Skip to content

Instantly share code, notes, and snippets.

@railroadman
Created September 29, 2024 09:25
Show Gist options
  • Save railroadman/69575af06e6b30d5917d790b03fecd15 to your computer and use it in GitHub Desktop.
Save railroadman/69575af06e6b30d5917d790b03fecd15 to your computer and use it in GitHub Desktop.
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