Borya-Goldarb commited on
Commit
100c5ee
·
verified ·
1 Parent(s): 77ed066

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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['popup_text']).add_to(m)
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