Pijush2023 commited on
Commit
e577415
·
verified ·
1 Parent(s): 148de2d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -942,7 +942,7 @@ def generate_map(location_names):
942
  if geocode_result:
943
  location = geocode_result[0]['geometry']['location']
944
  folium.Marker(
945
- [location['lat'], 'lng']],
946
  tooltip=f"{geocode_result[0]['formatted_address']}"
947
  ).add_to(m)
948
 
 
942
  if geocode_result:
943
  location = geocode_result[0]['geometry']['location']
944
  folium.Marker(
945
+ [location['lat'], location['lng']],
946
  tooltip=f"{geocode_result[0]['formatted_address']}"
947
  ).add_to(m)
948