我和其他人已经建立了一个在线申请的原型,以协助交通规划者优先考虑自行车道的新资金:
https://robinlovelace.shinyapps.io/fixMyPath/
我们对结果感到满意,并对Shiny快速构建Web部署概念的能力印象深刻,而无需编写单行JavaScript。但是,应用程序有一个主要问题,您将通过放大然后调整透明度滑块来看到:每次执行此操作时缩放都会重置。因此问题很简单:如何重新编写server.R
以便地图不会重置缩放设置?
整个应用程序可以在下面的链接中看到,并且应该可以在任何R安装上重现,前提是您有正确的包(例如rgdal,leaflet,ggmap):
https://github.com/nikolai-b/hackMyRoute/tree/master/R/fixMyPath
有关更多背景信息,请参阅here。
答案 0 :(得分:5)
我有同样的问题,我认为我发现了一些有效的方法:
使用here on the Leaflet for R page所述的LeafletProxy
更改您生成地图的方式,并在SuperZip example上显示。首先,尝试设置renderLeaflet
功能,如下所示:
output$map = renderLeaflet(leaflet() %>%
addTiles(urlTemplate = "http://{s}.tile.thunderforest.com/cycle/{z}/{x}/{y}.png") %>%
setView(...) # add the parameters as appropriate set the view or use fitBounds
然后使用observe
函数与LeafletProxy
一起画出这样的直线和圆圈:
observe({
leafletProxy("map") %>%
clearShapes() %>%
addPolygons(layerId= "layer1"
, data = leeds
, fillOpacity = 0.4
, opacity = (input$transp_zones)*.4
, fillColor = leeds$color_pcycle
) %>%
addPolyLines(layerId = "layer2"
, data = lfast, color = "red"
, opacity = input$transp_fast
, popup = sprintf("<dl><dt>Distance </dt><dd>%s km</dd><dt>Journeys by bike</dt><dd>%s%%</dd>", round(flows$fastest_distance_in_m / 1000, 1), round(flows$p_cycle * 100, 2))
) %>%
# and so on in a similar fashion for the rest of your shapes
})
您需要添加图层ID,以确保在更改参数时新形状会替换旧形状。这样您就不需要mapOptions(zoomToLimits = "first")
。