-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui.R
38 lines (38 loc) · 905 Bytes
/
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
38
page_navbar(
title = tags$span(
class = "title",
tags$a(
tags$img(src = "horizontal_SB_blanco.png", height = "30px", style = "margin-top: -5px"),
href = "https://odes-chile.org/"
),
"Cuenta del Acongagua"
),
id = "nav",
lang = "es",
theme = theme_odes,
fillable = TRUE,
fillable_mobile = TRUE,
# mapa --------------------------------------------------------------------
bslib::nav_panel(
title = "Vulnerabilidad",
tags$head(
# Include our custom CSS
includeCSS("www/css/styles.css"),
),
layout_sidebar(
sidebar = sidebar(
width = 400,
selectInput("variable", tags$small("Variable"), opt_variables)
),
leafletOutput("map", width="100%", height="100%")
)
),
bslib::nav(
title = "Biodiversidad",
"Próximamente"
),
bslib::nav(
title = "Huertos",
"Próximamente"
),
)