Maptype=toner 生成彩色地图,而不是黑白地图

Maptype=toner produces maps in color, not black and white

我在使用 maptype=toner 制作黑白花蕊图时遇到问题。相反,代码会生成彩色地图(见下文)。此外,我不知道如何控制城市和州名的大小,也不确定如何关闭某些标签(例如,如果我不想显示城市名但想要州名) .这是我的代码:

mapbox.hud <- c(-74.2, 41, -73.5, 43)
Hudson.River <- get_map(location = mapbox.hud, source = "stamen", maptype = 
"toner", zoom=10,crop=T, force=T)
ggmap(Hudson.River)

尝试使用 get_stamenmap:

library(ggmap)
mapbox.hud <- c(-74.2, 41, -73.5, 43)
Hudson.River <- get_stamenmap(bbox=mapbox.hud, maptype="toner", zoom=10, crop=T, force=T)
ggmap(Hudson.River)