Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -29,7 +29,7 @@ m = folium.Map(location=(filtered_data['latitude'].mean(), filtered_data['longit
|
|
| 29 |
|
| 30 |
# Add markers to the map
|
| 31 |
for index, row in filtered_data.iterrows():
|
| 32 |
-
folium.Marker([row['latitude'], row['longitude']], popup=row['
|
| 33 |
|
| 34 |
|
| 35 |
# Render the map
|
|
|
|
| 29 |
|
| 30 |
# Add markers to the map
|
| 31 |
for index, row in filtered_data.iterrows():
|
| 32 |
+
folium.Marker([row['latitude'], row['longitude']], popup=row['Name']).add_to(m)
|
| 33 |
|
| 34 |
|
| 35 |
# Render the map
|