如何在 r 中通过 get_stamenmap 获取美国地图?

How can I get the map of USA by get_stamenmap in r?

我没有 google 地图,所以我尝试使用 Stamen 地图

我试过了:

library("ggmap")
us = get_stamenmap(place="USA")
ggmap(us)

但无论在什么地方它总是显示以下地图:

虽然我需要这张地图:

library("ggmap")

# lng/lat bounds of contiguous USA
bbox <- c(left = -125, bottom = 25, right = -65, top = 50)

us <- get_stamenmap(bbox = bbox, zoom = 5)
ggmap(us)