简体   繁体   中英

cannot get the google satelite image with a bounding box

I want to extract google satellite images in r.

I actually manage to get my image using the coordinates but not with the bounding bx

first you need to get a google api key and register it then

GE <- get_map(location = c(long =36.8595894, lat=-0.7688972) , 
    maptype = "satellite", zoom=18)
ggmap(GE)

This works

then i want to make a bounding box

box<-make_bbox(c(36.8594652,36.8597136),c(-0.7691144,-0.7686799 ) )
GE <- get_map(box , 
    maptype = "satellite", source="google",
    zoom=18)

This however does not return a satellite image, why?
it seems to return a ggmap but not from google and it is not viewable with ggmap(GE)

Ok, Camille is right, it is just not an option ind get_googlemap, this is however not straight forward when just looking at vignette of the wrapper function get_map.

I found this post ggmap extended zoom or boundaries that shows how to handle the boundaries and zoom with google image.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM