Tinsae commited on
Commit
7b54e92
·
1 Parent(s): 9f09a6f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -1,6 +1,7 @@
1
  import streamlit as st
2
  from PIL import Image
3
-
 
4
 
5
  st.set_page_config(layout="wide")
6
  image = Image.open('data/logo.png')
@@ -23,4 +24,6 @@ methods. The team worked on different tasks which are independent of each other
23
  project goal. For demonstration, the team integrated all of them into one dashboard with good usability
24
  for non-technical decision-makers.
25
  ''')
 
 
26
 
 
1
  import streamlit as st
2
  from PIL import Image
3
+ import folium
4
+ from streamlit_folium import st_folium
5
 
6
  st.set_page_config(layout="wide")
7
  image = Image.open('data/logo.png')
 
24
  project goal. For demonstration, the team integrated all of them into one dashboard with good usability
25
  for non-technical decision-makers.
26
  ''')
27
+ map = folium.Map(location=[42.3, 13], zoom_start=5,scrollWheelZoom=False, tiles='CartoDB positron')
28
+ st_map = st_folium(map, width=700, height= 450)
29