project / jaw.py
aassiiyAA123's picture
Upload 17 files
9058afc verified
raw
history blame contribute delete
379 Bytes
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())