temporarily omit marker feature
Browse files
app.py
CHANGED
@@ -274,12 +274,12 @@ def main():
|
|
274 |
lng = map_data['last_clicked']['lng']
|
275 |
|
276 |
# Clear previous markers and add new one
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
|
284 |
st.write(f"Selected coordinates: {lat:.4f}, {lng:.4f}")
|
285 |
|
|
|
274 |
lng = map_data['last_clicked']['lng']
|
275 |
|
276 |
# Clear previous markers and add new one
|
277 |
+
# marker_group.clear()
|
278 |
+
# marker_group.add_child(folium.Marker(
|
279 |
+
# [lat, lng],
|
280 |
+
# popup=f"Selected Location\n{lat:.4f}, {lng:.4f}",
|
281 |
+
# icon=folium.Icon(color="red", icon="info-sign")
|
282 |
+
# ))
|
283 |
|
284 |
st.write(f"Selected coordinates: {lat:.4f}, {lng:.4f}")
|
285 |
|