Created
September 29, 2024 09:25
-
-
Save railroadman/69575af06e6b30d5917d790b03fecd15 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 folium | |
from IPython.display import display | |
map_center = [52.520,13.4050] | |
mymap = folium.Map(location=map_center,zoom_start=15) | |
folium.Marker ( | |
[52.520,13.4050], | |
popup="Berlin", | |
icon=folium.Icon(color="blue", icon="info-sign") | |
).add_to(mymap) | |
display(mymap) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment