folium 定义popup及Tooltip的方法

需要首先定义相应的实例化函数:
tooltip=GeoJsonTooltip(
fields=[“小区名称”, “Ang”, “todistance”],
aliases=[“小区名称:”, “原方向角:”, “距离:”],)
popup = GeoJsonPopup(
fields=[“小区名称”, “Ang”, “todistance”],
aliases=[“小区名称:”, “调整方向角:”, “距离:”],
localize=True,
labels=True,
style=“background-color: yellow;”,
)

再通过传参方式实现tooltip、popup定义:
folium.GeoJson(scellgeo,popup=popup,
style_function=lambda feature: {
‘fillColor’: ‘red’,
‘color’: ‘red’,
“fillOpacity”: 0.2,
‘lineOpacity’:0.9,
# ‘dashArray’: ‘5, 5’
}).add_to(m)

folium.GeoJson(rcellgeo,tooltip=tooltip,
style_function=lambda feature: {
‘fillColor’: ‘green’,
‘color’: ‘green’,
“fillOpacity”: 0.2,
‘lineOpacity’:0.9,
# ‘dashArray’: ‘5, 5’
}).add_to(m)

你可能感兴趣的:(前端)