map / Application.py
Yunus Serhat Bıçakçı
update
5c9c652
raw
history blame
1.37 kB
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.")
st.markdown('''
<a href="https://interactive-crime-map.hf.space">
<img src="https://raw.githubusercontent.com/yunusserhat/Github/main/data/interactive-crime-demo.gif" style="width: 60%; height: 60%" />
</a>''',
unsafe_allow_html=True
)