I cannot figure out why clearshapes()
is not working in my leaflet shiny program. I am trying to remove the existing circles and replace with a category that is selected based on the input check box that I have. However, what happens is that new circles are overlayed on top of the existing ones.
Anyone encounter this before?
df = read.csv("mappingData.csv",header=T, sep =",")
ui = fluidPage(
checkboxGroupInput("set", label = "Pothole Reported by:",
choices = list("Citizens Connect App" = "Citizens Connect App",
"City Worker App" = "City Worker App",
"Constituent Call" = "Constituent Call",
"Self Service" = "Self Service",
"Employee Generated" = "Employee Generated",
"Not Available (Cambridge)" = "")),
verbatimTextOutput("value"),
leafletOutput("map")
)
server <- function(input, output) {
filteredDataCheck <- reactive({
# subset(df, Source == input$set)
print(input$set)
})
output$value <- renderPrint ({ filteredDataCheck() })
filteredData <- reactive({
df[as.character(df$Source) == input$set, ]
})
output$map <- renderLeaflet ({
leaflet(df) %>%
setView(-71.083, 42.353, 13) %>%
addProviderTiles("Stamen.TonerLite", options = providerTileOptions(noWrap=T))
})
observe({
leafletProxy("map", data = filteredData() ) %>% clearShapes() %>%
addCircles(radius = 1, color = "red", group = "circles") %>% clearShapes()
})
}
shinyApp(ui = ui, server = server)
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…