เริ่มต้นใช้งานเริ่มต้นใช้งานได้ฟรี

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(____)
แก้ไขและรันโค้ด