Spaces:
Sleeping
Sleeping
| import streamlit as st | |
| import leafmap.foliumap as leafmap | |
| st.set_page_config(layout="wide") | |
| st.sidebar.info( | |
| """ | |
| - Web App URL: <https://interactive-crime-map.hf.space/> | |
| - HuggingFace repository: <https://huggingface.co/spaces/interactive-crime/map/tree/main> | |
| """ | |
| ) | |
| st.sidebar.title("Contact") | |
| st.sidebar.info( | |
| """ | |
| Yunus Serhat Bıçakçı at [yunusserhat.com](https://yunusserhat.com) | [GitHub](https://github.com/yunusserhat) | [Twitter](https://twitter.com/yunusserhat) | [LinkedIn](https://www.linkedin.com/in/yunusserhat) | |
| """ | |
| ) | |
| st.title("Interactive Crime Map Application") | |
| st.subheader( | |
| """ | |
| This interactive crime map apps created using [streamlit](https://streamlit.io) and open-source mapping libraries and repositories, such as [leafmap](https://leafmap.org), [geopandas](https://geopandas.org), [streamlit-geospatial](https://huggingface.co/spaces/giswqs/Streamlit) ,and [folium](https://python-visualization.github.io/folium/). | |
| """ | |
| ) | |
| st.info("Click on the left sidebar menu to navigate to the different apps.") | |