Spaces:
Sleeping
Sleeping
File size: 1,547 Bytes
bb4a729 ce828e7 bb4a729 1f3e989 bb4a729 b0e4312 bb4a729 b0e4312 bb4a729 dc2d416 bb4a729 4602598 bb4a729 384ecbd 5c9c652 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
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(
"""
The following animation was created using the web applications on the left sidebar menu. You can access web apps by clicking on the menu items.
"""
)
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
)
|