I have the following code which uses this geojson file as input.
import folium
markers_geojson='volcanoes_json.geojson'
map=folium.Map(location=[0,0],zoom_start=6,tiles='Mapbox bright')
map.add_child(folium.GeoJson(data=open(markers_geojson),name='Volcano').add_child(folium.Popup("A plain pop up string")))
map.save(outfile='test5.html')
As you see the code is simply displaying a static string. Is there a way to put marker properties values contained in the json file in the popup method?
I have the following code which uses this geojson file as input.
As you see the code is simply displaying a static string. Is there a way to put marker properties values contained in the json file in the popup method?