File size: 633 Bytes
3ae2a46
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import streamlit as st
import leafmap.foliumap as leafmap

st.set_page_config(layout="wide")

st.sidebar.info(
    """
    - Web App URL: https://lincolnagritech.streamlit.app/
   
    """
)

st.sidebar.title("Contact")
st.sidebar.info(
    """
    Thai Tran: Thai.Tran@
    """
)

# Customize page title
st.title("Lincoln Agritech Geospatial Applications")

st.markdown(
    """
    An online interactive mapping tool to display basic vegetative metrics available over Canterbury.
    """
)



m = leafmap.Map(minimap_control=True, center=(-43.525650, 172.639847), zoom=6.25)
m.add_basemap("OpenTopoMap")
m.to_streamlit(height=500)