update map controls

This commit is contained in:
2025-10-31 11:51:46 -04:00
parent 7cf49fec0f
commit 69b6f32002
+11 -13
View File
@@ -887,13 +887,22 @@ leafletOutput("growth_map", height = "100%")
### Map Control {data-height=200} ### Map Control {data-height=200}
```{r} ```{r}
radioGroupButtons( fluidRow(
column(
6,
selectInput("growth_trend_lf_select", "Landfall Select", choices = NULL)
),
column(
6,
radioGroupButtons(
"growth_map_metric", "growth_map_metric",
label = "Display Metric", label = "Display Metric",
choices = c("Population", "Housing"), choices = c("Population", "Housing"),
selected = "Population", selected = "Population",
status = "outline-primary rounded-0", status = "outline-primary rounded-0",
justified = T justified = T
)
)
) )
``` ```
@@ -903,19 +912,8 @@ Column {data-width=450}
### Landfall Growth {data-height=550} ### Landfall Growth {data-height=550}
```{r} ```{r}
# Growth - Trend Chart # Growth - Trend Chart
# TODO: add chart and chart controls
fillCol( dygraphOutput("test_dy")
flex = c(.2, .8),
fluidRow(
column(
6,
selectInput("growth_trend_lf_select", "Landfall Select", choices = NULL)
),
column(6, )
),
dygraphOutput("test_dy")
)
output$test_dy <- renderDygraph({ output$test_dy <- renderDygraph({
req(growth_counties) req(growth_counties)