Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created July 17, 2021 06:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amankharwal/92b93020cc6c1351858f92183a240f93 to your computer and use it in GitHub Desktop.
Save amankharwal/92b93020cc6c1351858f92183a240f93 to your computer and use it in GitHub Desktop.
lat = list(data["Latitude"])
lon = list(data["Longitude"])
name = list(data["Name"])
volcano = fo.FeatureGroup(name="Volcano")
for a, b, c in zip(lat, lon, name):
volcano.add_child(fo.Marker(location=[a, b], popup=c, icon=fo.Icon(color='blue')))
fo.Map().add_child(volcano)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment