Skip to content

Instantly share code, notes, and snippets.

@Dhrumilcse
Last active September 22, 2019 19:43
Show Gist options
  • Select an option

  • Save Dhrumilcse/e2c8123a7d68c0c0a567cd27c108c8b3 to your computer and use it in GitHub Desktop.

Select an option

Save Dhrumilcse/e2c8123a7d68c0c0a567cd27c108c8b3 to your computer and use it in GitHub Desktop.
#Import Library
import folium
#Create base map
map = folium.Map(location=[48.754865,2.373034], zoom_start = 10)
#Add Marker
folium.Marker(location=[48.754865,2.373034,], popup = "Tesla Supercharger Thiais",
icon=folium.Icon(color = 'green')).add_to(map)
#Save the map
map.save("map.html")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment