show change satellite imagery on the top
Browse files
app.py
CHANGED
@@ -128,11 +128,6 @@ with st.expander("Advanced Settings"):
|
|
128 |
max_year = int(st.number_input("Maximum Year", value=max_year, min_value=2015, step=1))
|
129 |
|
130 |
buffer = st.number_input("Buffer (m)", value=50, min_value=0, step=1)
|
131 |
-
map_type = st.radio(
|
132 |
-
"",
|
133 |
-
["Esri Satellite Map", "Google Hybrid Map (displays place names)", "Google Satellite Map"],
|
134 |
-
horizontal=True,
|
135 |
-
)
|
136 |
|
137 |
if len(input_gdf) > 1:
|
138 |
with container:
|
@@ -200,6 +195,11 @@ wayback_url = (
|
|
200 |
# print(wayback_url)
|
201 |
|
202 |
with container:
|
|
|
|
|
|
|
|
|
|
|
203 |
m = leaf_folium.Map()
|
204 |
if map_type == "Google Hybrid Map (displays place names)":
|
205 |
write_info("Google Hybrid Map (displays place names)", center_align=True)
|
|
|
128 |
max_year = int(st.number_input("Maximum Year", value=max_year, min_value=2015, step=1))
|
129 |
|
130 |
buffer = st.number_input("Buffer (m)", value=50, min_value=0, step=1)
|
|
|
|
|
|
|
|
|
|
|
131 |
|
132 |
if len(input_gdf) > 1:
|
133 |
with container:
|
|
|
195 |
# print(wayback_url)
|
196 |
|
197 |
with container:
|
198 |
+
map_type = st.radio(
|
199 |
+
"",
|
200 |
+
["Esri Satellite Map", "Google Hybrid Map (displays place names)", "Google Satellite Map"],
|
201 |
+
horizontal=True,
|
202 |
+
)
|
203 |
m = leaf_folium.Map()
|
204 |
if map_type == "Google Hybrid Map (displays place names)":
|
205 |
write_info("Google Hybrid Map (displays place names)", center_align=True)
|