शुरू करेंमुफ़्त में शुरू करें

Create a folium map of downtown Nashville

In this exercise you will create a street map of downtown Nashville using folium.

यह अभ्यास पाठ्यक्रम का हिस्सा है

Visualizing Geospatial Data in Python

पाठ्यक्रम देखें

अभ्यास निर्देश

  • Construct a folium map called downtown_map. Use the urban_location array you created in the previous exercise and set the initial zoom level to 15.
  • Display your folium map object with the provided display function.

इंटरैक्टिव व्यावहारिक अभ्यास

इस अभ्यास को इस नमूना कोड को पूरा करके आज़माएँ।

# Construct a folium map with urban_location
downtown_map = folium.Map(____ = ____, ____ = 15)

# Display the map
display(____)
कोड संपादित करें और चलाएँ