Pijush2023 commited on
Commit
c756e2d
·
verified ·
1 Parent(s): ceb2d3f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -1257,7 +1257,7 @@ def generate_map(location_names):
1257
  if geocode_result:
1258
  location = geocode_result[0]['geometry']['location']
1259
  folium.Marker(
1260
- [location['lat'], 'location['lng']'],
1261
  tooltip=f"{geocode_result[0]['formatted_address']}"
1262
  ).add_to(m)
1263
 
 
1257
  if geocode_result:
1258
  location = geocode_result[0]['geometry']['location']
1259
  folium.Marker(
1260
+ [location['lat'], location['lng']],
1261
  tooltip=f"{geocode_result[0]['formatted_address']}"
1262
  ).add_to(m)
1263