Spaces:
Runtime error
Runtime error
import streamlit as st | |
import folium | |
from streamlit_folium import folium_static | |
# Define hospitals data for Minnesota | |
hospitals = [('Mayo Clinic', 'Rochester', 44.023678, -92.466955), ('University of Minnesota Medical Center', 'Minneapolis', 44.971389, -93.240556), ('Hennepin County Medical Center', 'Minneapolis', 44.972078, -93.261769), ('Regions Hospital', 'St. Paul', 44.942936, -93.093457), ('Abbott Northwestern Hospital', 'Minneapolis', 44.955447, -93.268543)] | |
# Create a map centered on Minnesota | |
m = folium.Map(location=[45.0, -94.0], zoom_start=7) | |
# Add markers for each hospital | |
for hospital in hospitals: | |
folium.Marker( | |
location=[hospital[2], hospital[3]], | |
popup=f'{hospital[0]}<br>{hospital[1]}', | |
icon=folium.Icon(color='red') | |
).add_to(m) | |
# Add waypoints for each hospital | |
waypoints = [(hospital[2], hospital[3]) for hospital in hospitals] | |
folium.plugins.AntPath(waypoints, delay=3000).add_to(m) | |
# Display the map in Streamlit | |
folium_static(m) | |
# Create a grid of buttons for selecting hospitals | |
col1, col2, col3 = st.columns(3) | |
with col1: | |
if st.button(hospitals[0][0]): | |
m.location = [hospitals[0][2], hospitals[0][3]] | |
with col2: | |
if st.button(hospitals[1][0]): | |
m.location = [hospitals[1][2], hospitals[1][3]] | |
with col3: | |
if st.button(hospitals[2][0]): | |
m.location = [hospitals[2][2], hospitals[2][3]] | |
col4, col5, col6 = st.columns(3) | |
with col4: | |
if st.button(hospitals[3][0]): | |
m.location = [hospitals[3][2], hospitals[3][3]] | |
with col5: | |
if st.button(hospitals[4][0]): | |
m.location = [hospitals[4][2], hospitals[4][3]] |