使用ggmap自定义视图

时间:2017-02-04 19:48:38

标签: r ggmap

我无法弄清楚如何获得整个爱尔兰地区,请参阅代码:

library(ggmap)
map <- get_map(location = 'Ireland', zoom = 7, maptype = "terrain", force = TRUE)  

看看它是如何向北移动的...... 谢谢。

1 个答案:

答案 0 :(得分:1)

使用ggmap()ggplot()

进行以下操作

ggmap中,有一个函数get_map()可以创建一个包含相关地理信息的数据框,用于绘制地图。对于你的情况,它将是这样的

ireland = map_data("world", region = "ireland")

然后你只需要使用geom_polygon()它就可以了。

map = ggplot() + geom_polygon(data = ireland, aes(x=long, y = lat, group = group)) + 
+   coord_fixed(1.5)

它产生的结果是:enter image description here