Skip to content

Instantly share code, notes, and snippets.

@liannewriting
Created August 19, 2021 13:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save liannewriting/ca0154f6fbbc6fc47435a02e2228a1dc to your computer and use it in GitHub Desktop.
Save liannewriting/ca0154f6fbbc6fc47435a02e2228a1dc to your computer and use it in GitHub Desktop.
python data visualization libraries list
import folium
m = folium.Map(location=[40.730610, -73.935242], zoom_start=12)
folium.Marker(
[40.706005, -74.008827], tooltip='Wall Street'
).add_to(m)
folium.Marker(
[40.748817, -73.985428], tooltip='Empire State Building'
).add_to(m)
folium.Marker(
[40.689247, -74.044502], tooltip='Statue of Liberty'
).add_to(m)
m
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment