-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathapp.py
More file actions
32 lines (27 loc) · 697 Bytes
/
app.py
File metadata and controls
32 lines (27 loc) · 697 Bytes
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
import streamlit as st
from multiapp import MultiApp
from apps import (
home,
backends,
basemaps,
customize,
demo,
tile_layer,
timelapse,
uber_nyc,
vector,
)
# st.set_page_config(layout="wide")
apps = MultiApp()
# Add all your application here
apps.add_app("Timelapse", timelapse.app)
apps.add_app("Home", home.app)
apps.add_app("Create an interactive map", backends.app)
apps.add_app("Customize the default map", customize.app)
apps.add_app("Change basemaps", basemaps.app)
apps.add_app("Add tile layers", tile_layer.app)
apps.add_app("Add vector", vector.app)
apps.add_app("Demo", demo.app)
apps.add_app("Pydeck", uber_nyc.app)
# The main app
apps.run()