我正在制作一个应用程序,其中我有一个需要在地图上标记的位置流。我在地图上只显示了特定数量的标记,因此我需要用新标记替换一些旧标记。
我folium.simple_marker()
用来标记位置。
有删除特定标记的功能吗?
import folium
map_1 = folium.Map(location=[latitude,longtitude], zoom_start=9,)
for location in locations:
map_1.simple_marker([location.lat,location.longt], popup='')
map_1.create_map(path='map.html')