-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathui.R
37 lines (30 loc) · 1.09 KB
/
ui.R
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
shinyUI(navbarPage(
title = div(em(strong("Tucumã Toolbox"))),
windowTitle = "Tucumã Toolbox",
id = "navbar",
position = "fixed-top",
collapsible = T,
header = {
# load styles.css file with custom styles
tags$head(includeCSS("www/styles.css"))
},
navbarMenu("BFAST Explorer",
source(file.path("ui/ui-tab-bfast-1.R"), local = TRUE)$value,
source(file.path("ui/ui-tab-bfast-2.R"), local = TRUE)$value,
source(file.path("ui/ui-tab-bfast-3.R"), local = TRUE)$value
),
navbarMenu("DAM",
source(file.path("ui/ui-tab-download-pixel.R"), local = TRUE)$value,
source(file.path("ui/ui-tab-download-raster.R"), local = TRUE)$value
),
navbarMenu("TSR",
source(file.path("ui/ui-tab-tsr-1.R"), local = TRUE)$value,
source(file.path("ui/ui-tab-tsr-2.R"), local = TRUE)$value,
source(file.path("ui/ui-tab-tsr-3.R"), local = TRUE)$value
),
navbarMenu("GPC",
source(file.path("ui/ui-tab-GP-1.R"), local = TRUE)$value,
source(file.path("ui/ui-tab-GP-2.R"), local = TRUE)$value
),
source(file.path("ui/ui-tab-bfast-4.R"), local = TRUE)$value
))