Pijush2023 commited on
Commit
131c43b
·
verified ·
1 Parent(s): c2184af

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -1075,7 +1075,7 @@ def generate_map(location_names):
1075
  if geocode_result:
1076
  location = geocode_result[0]['geometry']['location']
1077
  folium.Marker(
1078
- [location['lat'], 'location['lng']],
1079
  tooltip=f"{geocode_result[0]['formatted_address']}"
1080
  ).add_to(m)
1081
 
 
1075
  if geocode_result:
1076
  location = geocode_result[0]['geometry']['location']
1077
  folium.Marker(
1078
+ [location['lat'], location['lng']],
1079
  tooltip=f"{geocode_result[0]['formatted_address']}"
1080
  ).add_to(m)
1081