Spaces:
Paused
Paused
Update app.py
Browse files
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'],
|
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 |
|