许多问题似乎与我的相似,但是我无法为 R 找到合适的答案。
到目前为止,我以这种方式使用了很棒的 R 传单(和 ggmap)包:
library(ggmap)
library(leaflet)
coord <-geocode('New York')
map.city <- leaflet() %>%
addTiles('http://{s}.tile.thunderforest.com/transport/{z}/{x}/{y}.png?apikey=68c4cd328d3b484091812a76fae093fd') %>%
setView(coord$lon, coord$lat, zoom = 11)
但是,如果我想要 Google 卫星作为地图呢?
我浏览了这篇文章
https://stackoverflow.com/questions/9394190/leaflet-map-api-with-google-satellite-layer# =
但不明白如何使用那里定义的 googleSat 函数。