inst/examples/shiny/proxy_restyle_canada/app.R

library(shiny)
library(plotly)

ui <- fluidPage(
  selectInput("color", "Canada's fillcolor", colors(), selected = "black"),
  plotlyOutput("map")
)

server <- function(input, output, session) {
  
  output$map <- renderPlotly({
    
    map_data("world", "canada") %>%
      group_by(group) %>%
      plot_mapbox(x = ~long, y = ~lat, color = I("black")) %>%
      add_polygons() %>%
      layout(
        mapbox = list(
          center = list(lat = ~median(lat), lon = ~median(long))
        )
      )
    
  })
  
  observeEvent(input$color, {
    
    plotlyProxy("map", session) %>%
      plotlyProxyInvoke(
        "restyle", list(fillcolor = toRGB(input$color))
      )
    
  })
  
}

shinyApp(ui, server)

Try the plotly package in your browser

Any scripts or data that you put into this service are public.

plotly documentation built on Oct. 22, 2023, 1:14 a.m.