Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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 |
|