import folium
# Create map
m = folium.Map(location=[37.7749, -122.4194], zoom_start=13)
# Add a circle marker
folium.CircleMarker(
location=[37.7749, -122.4194],
radius=50,
popup="San Francisco",
color="blue",
fill=True,
fill_color="blue",
).add_to(m)
# Display map in Jupyter
m
0 Comments:
Post a Comment