R/Shiny+Leafetでクリック座標値を保管
reactiveValues
を使えば良い。
library(shiny)
library(leaflet)
ui <- fluidPage(
leafletOutput(outputId="map", height="500"),
tableOutput(outputId="rv")
)
server <- function(input, output, session){
output$map <- renderLeaflet(expr={
leaflet() %>%
addTiles() %>%
setView(lng=135, lat=35, zoom=9)
})
rv <- reactiveValues(lat=NULL, lng=NULL)
observeEvent(
eventExpr=input$map_click,
handlerExpr={
rv$lat <- append(rv$lat, input$map_click$lat)
rv$lng <- append(rv$lng, input$map_click$lng)
}
)
output$rv <- renderTable(expr={
data.frame(rv$lat, rv$lng)
})
}
shinyApp(ui, server)
Author And Source
この問題について(R/Shiny+Leafetでクリック座標値を保管), 我々は、より多くの情報をここで見つけました https://qiita.com/yono2844/items/976603c1cd88812aa153著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .