Pijush2023 commited on
Commit
e955af0
·
verified ·
1 Parent(s): b53a225

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -1034,7 +1034,7 @@ def generate_map(location_names):
1034
  if geocode_result:
1035
  location = geocode_result[0]['geometry']['location']
1036
  folium.Marker(
1037
- [location['lat'], 'location['lng']],
1038
  tooltip=f"{geocode_result[0]['formatted_address']}"
1039
  ).add_to(m)
1040
 
 
1034
  if geocode_result:
1035
  location = geocode_result[0]['geometry']['location']
1036
  folium.Marker(
1037
+ [location['lat'], location['lng']],
1038
  tooltip=f"{geocode_result[0]['formatted_address']}"
1039
  ).add_to(m)
1040