Spaces:
Sleeping
Sleeping
File size: 379 Bytes
9058afc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
import streamlit as st
st.title("HOME PAGE")
st.title("Streamlit for Geospatial Applications")
PAGES = {
"Home": "jaw.py",
"Folium Map": "folium_Map.py",
}
# Sidebar for navigation
st.sidebar.title("Navigation")
selection = st.sidebar.radio("Go to", list(PAGES.keys()))
# Load the selected page
page = PAGES[selection]
exec(open(page).read()) |