shiny+leaflet으로 지도에서 위도 경도 가져오기
leafletOutput()
의 outputId_click (여기서는 map_click)에 위도 경도가 저장됩니다.library(shiny)
library(leaflet)
rm(list=ls())
lng <- 135
lat <- 35
ui <- fillPage(
leafletOutput(outputId="map", height="100%"),
absolutePanel(bottom=10, left=10,
tableOutput(outputId="table")
)
)
server <- function(input, output, session){
output$map <- renderLeaflet({
leaflet() %>%
addTiles() %>%
setView(lng=lng, lat=lat, zoom=15)
})
observeEvent(input$map_click, {
output$table <- renderTable({
as.data.frame(input$map_click)
})
})
}
shinyApp(ui=ui, server=server)
왼쪽 하단에 위도 경도가 표시됩니다.
Degree Confluence Project를 아십니까?
ㅡㅡㅜㅜㅜㅜㅜㅜ 오 rg / 안 f ㅅ 엔세. php?ぁt=35&ぉ=135
Reference
이 문제에 관하여(shiny+leaflet으로 지도에서 위도 경도 가져오기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/yono2844/items/5be959e58c98c16003a6텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)