File size: 537 Bytes
f8bf7d4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import pandas as pd
import streamlit as st
import folium

from streamlit_folium import st_folium
from streamlit_folium import folium_static


visp_loc = 46.295833, 7.883333
#m = folium.Map(location=visp_loc, zoom_start=9)


st.markdown("# :whale: :whale: Cetaceans :red[& friends] :balloon:")

m = folium.Map(location=visp_loc, zoom_start=9,
                              tiles='https://tile.opentopomap.org/{z}/{x}/{y}.png',
                              attr='<a href="https://opentopomap.org/">Open Topo Map</a>')

folium_static(m)