Create a folium map of downtown Nashville
In this exercise you will create a street map of downtown Nashville using folium.
Deze oefening maakt deel uit van de cursus
Visualizing Geospatial Data in Python
Oefeninstructies
- Construct a folium map called
downtown_map. Use theurban_locationarray you created in the previous exercise and set the initial zoom level to 15. - Display your folium map object with the provided
displayfunction.
Praktische interactieve oefening
Probeer deze oefening eens door deze voorbeeldcode in te vullen.
# Construct a folium map with urban_location
downtown_map = folium.Map(____ = ____, ____ = 15)
# Display the map
display(____)