Last active
September 22, 2019 19:43
-
-
Save Dhrumilcse/e2c8123a7d68c0c0a567cd27c108c8b3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #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