Spaces:
Sleeping
Sleeping
update
Browse files
app.py
CHANGED
|
@@ -38,5 +38,6 @@ m = folium.Map(location=(51.5074, 0.1278), zoom_start=10)
|
|
| 38 |
for index, row in filtered_data.iterrows():
|
| 39 |
folium.Marker([row['latitude'], row['longitude']], popup=row['popup_text']).add_to(m)
|
| 40 |
|
|
|
|
| 41 |
# Render the map
|
| 42 |
folium_static(m)
|
|
|
|
| 38 |
for index, row in filtered_data.iterrows():
|
| 39 |
folium.Marker([row['latitude'], row['longitude']], popup=row['popup_text']).add_to(m)
|
| 40 |
|
| 41 |
+
|
| 42 |
# Render the map
|
| 43 |
folium_static(m)
|