如何将Google卫星视图用作R中的传单中的图块

时间:2017-06-21 13:49:33

标签: r google-maps leaflet ggmap satellite-image

许多问题看起来与我的相似,但我无法为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) 

但是,如果我想将谷歌卫星作为地图呢?

我浏览了这篇文章

https://stackoverflow.com/questions/9394190/leaflet-map-api-with-google-satellite-layer#=

但不明白如何使用那里定义的googleSat函数。

2 个答案:

答案 0 :(得分:6)

如果必须是谷歌卫星图像,您可以使用googleway包。如果其他卫星图像没问题,你可以使用&#34; Esri.WorlImagery&#34;有没有&#34; CartoDB.PositronOnlyLabels&#34;在传单中:

library(ggmap)
library(leaflet)

coord <-geocode('New York')

map.city <- leaflet() %>% addProviderTiles('Esri.WorldImagery') %>% 
  setView(coord$lon, coord$lat, zoom = 11)
map.city %>% addProviderTiles("CartoDB.PositronOnlyLabels")

答案 1 :(得分:1)

要使用实际的Google地图(附带卫星视图),您可以使用我的googleway

library(googleway)

apiKey <- 'your_api_key'
mapKey <- 'your_map_key'

newYork <- google_geocode(address = "New York", key = apiKey)

google_map(location = as.numeric(newYork$results$geometry$location), 
           key = mapKey)

enter image description here

vignette有更多关于你可以用地图做什么的例子。