我正在创建一个R Shiny应用程序,用户将输入他们的城市,州和邮政编码,按一下按钮,然后他们的位置(Lat,Lon)将成为地图的新中心。输入是通过server.R中的这部分代码收集的:
output$ntextCounter <- eventReactive(input$goButton, {
citySelected <- as.character(input$city)
stateSelected <- as.character(input$state)
zipCodeSelected <- as.character(input$zipCode)
location2 <- stri_detect(paste(as.character(input$city),
as.character(input$state), as.character(input$zipCode), sep=", "), fixed = locationData$Location, opts_regex=stri_opts_regex(case_insensitive=TRUE))
counter <<- counter + 1
lat1 <- as.numeric(locationData[which(location2),]$latitude)
lon1 <- as.numeric(locationData[which(location2),]$longitude)
return(c(lat1, lon1))
})
我可以使用以下方法在UI中轻松查看新的纬度/经度值:
verbatimTextOutput("ntextCounter")
但是我需要能够传递这些值,&#34;将(c(lat1,lon1))&#34;,返回到ui中的传单映射中的center = c(Lat,Lon)。 R:
leafletMap("map", "100%", 365,
initialTileLayer = "http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
initialTileLayerAttribution = HTML('© <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>'),
options=list(center = c(38.25, -93.85), zoom = 4, maxBounds = list(list(1, -180), list(78, 180))
)),
我在c(38.25,-93.85)有一个初始地图中心,但最终我希望能够从ntextCounter传递更改值。我不确定这是否是一个范围问题,或者我需要帮助将新的lat / lon值放入传单地图中心。
非常感谢任何帮助。提前谢谢。
答案 0 :(得分:4)
好像你正在创建你的传单。如果您希望它能够响应输入,那么您必须在renderLeaflet
的服务器端执行此操作。
您的坐标可以存储在reactiveValues
中,并且您可以使用observeEvent
更新它们:
location <- reactiveValues(lat = 38.25, lon = -93.85)
observeEvent(input$goButton, {
city <- as.character(input$city)
state <- as.character(input$state)
zipCode <- as.character(input$zipCode)
newloc <- stri_detect(paste(city, state, zipCode, sep=", "),
fixed = locationData$Location,
opts_regex=stri_opts_regex(case_insensitive=TRUE))
location$lat <- as.numeric(locationData[which(newloc),]$latitude)
location$lon <- as.numeric(locationData[which(newloc),]$longitude)
})