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