Pijush2023 commited on
Commit
2b73d98
·
verified ·
1 Parent(s): 3dc532d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -1084,7 +1084,7 @@ def generate_map(location_names):
1084
  if geocode_result:
1085
  location = geocode_result[0]['geometry']['location']
1086
  folium.Marker(
1087
- [location['lat'], 'lng']],
1088
  tooltip=f"{geocode_result[0]['formatted_address']}"
1089
  ).add_to(m)
1090
 
 
1084
  if geocode_result:
1085
  location = geocode_result[0]['geometry']['location']
1086
  folium.Marker(
1087
+ [location['lat'], location['lng']],
1088
  tooltip=f"{geocode_result[0]['formatted_address']}"
1089
  ).add_to(m)
1090