gpt4 book ai didi

r - 来自 url 模板的传单 map 图 block 未在 Shiny 应用程序中呈现

转载 作者:行者123 更新时间:2023-12-05 07:29:07 26 4
gpt4 key购买 nike

我正在尝试在传单中使用 map.geo.admin 磁贴。

运行时

url <- 'https://wmts20.geo.admin.ch/1.0.0/ch.swisstopo.pixelkarte-farbe/default/current/3857/{z}/{x}/{y}.jpeg'

library(leaflet)
options(viewer = NULL)

leaflet() %>%
setView(lat = 47, lng = 9, zoom = 8) %>%
addTiles(urlTemplate = url)

map 在浏览器中正确显示(它在 RStudio 查看器 Pane 中不起作用),

enter image description here

但是当我将代码放入 Shiny 的应用程序中时,我只得到一张灰色 map (有时它最初会显示,但当我开始缩放时它会变灰):

 library(shiny)

ui <- fluidPage(
leafletOutput("map")
)

server <- function(input, output, session) {
output$map <- renderLeaflet({
leaflet() %>%
setView(lat = 47, lng = 9, zoom = 8) %>%
addTiles(urlTemplate = url)
# addTiles()
})
}

shinyApp(ui, server)

enter image description here

最佳答案

关于r - 来自 url 模板的传单 map 图 block 未在 Shiny 应用程序中呈现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52918866/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com