gpt4 book ai didi

r - selectInput 中的选项显示在传单 map 上

转载 作者:行者123 更新时间:2023-12-04 14:23:19 26 4
gpt4 key购买 nike

我正在构建一个 Shiny 的应用程序,用户可以通过从 selectInput() 中选择船只类型来查看各种类型的船只。根据选择,血管被过滤并显示在传单 map 上。但是,selectInput 中的选项当前出现在传单 map 下方,如下所示:enter image description here

是否有某种方法可以确保选择不会隐藏在传单 map 上的控件下。我不想移动 selectInput 的位置,因为预计旁边会有更多过滤器。

最佳答案

通过在 ui 中添加此行来修改下拉元素的 z-index:

tags$head(tags$style('.selectize-dropdown {z-index: 10000}'))

使用示例 here ,工作代码如下所示:

library(shiny)
library(leaflet)

r_colors <- rgb(t(col2rgb(colors()) / 255))
names(r_colors) <- colors()

ui <- fluidPage(
tags$head(tags$style('.selectize-dropdown {z-index: 10000}')),
selectInput("select", "Select", choices = c("A", "B")),
leafletOutput("mymap"),
p(),
actionButton("recalc", "New points")
)

server <- function(input, output, session) {

points <- eventReactive(input$recalc, {
cbind(rnorm(40) * 2 + 13, rnorm(40) + 48)
}, ignoreNULL = FALSE)

output$mymap <- renderLeaflet({
leaflet() %>%
addProviderTiles(providers$Stamen.TonerLite,
options = providerTileOptions(noWrap = TRUE)
) %>%
addMarkers(data = points())
})
}

shinyApp(ui, server)

关于r - selectInput 中的选项显示在传单 map 上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51077329/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com