2016-04-22 41 views
3

我想要得到雄蕊地圖的黑白版本,它給我的顏色版本。我已經嘗試使用get_map和get_stamenmap下載地圖,並且無論是將顏色指定爲「bw」還是「color」,它們都爲我提供了顏色版本。任何想法或解決辦法?用get_map獲取黑與白的雄蕊地圖

library(ggmap) 
mapImage <- get_map(location = c(lon = -110.8, lat = 34.7), 
       source = "stamen", 
       maptype = "terrain", 
       color = "bw", 
       zoom = 7) 
g <- ggmap(mapImage) 

enter image description here

回答

0

要獲得黑色和白色雄蕊地圖,使用maptype = "toner"。顏色參數對雄蕊地圖沒有影響。您可能還需要圍繞情節的面板邊框。如果是這樣,請使用ggplot的theme_bw()theme(panel.border = element_rect(fill = NA, colour = "black"))

library(ggmap) 
mapImage <- get_map(location = c(lon = -110.8, lat = 34.7), 
       source = "stamen", 
       maptype = "toner", 
       # color = "bw", 
       zoom = 7) 
ggmap(mapImage) + theme_bw() 

enter image description here