作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在 R 中创建一张世界地图。我对 ggmap
有点熟悉。 ,所以我尝试了这样的事情:
ggmap(get_googlemap(center=c(83,25),
zoom=1, scale=4, filename="world", size=c(640,300)))
world.png
而言,它确实可以正常工作被关注到。
ggmap
的解决方法。的“无法显示纬度 80° 以上的任何东西”的问题,因此或多或少不可能创建整个世界的 map 。
size
属性被相应地设置时),而不是方形的(默认情况下)。
最佳答案
使用比例限制。
法线贴图
ggmap(get_map(location=c(28.978359,41.008240), zoom=13, scale="auto"))
ggmap(get_map(location=c(28.978359,41.008240), zoom=13, scale="auto")) +
scale_x_continuous(limits = c(28.925,29.025), expand = c(0, 0)) +
scale_y_continuous(limits = c(40.99,41.03), expand = c(0, 0))
关于R ggmap : Why can I create rectangular maps using the filename attribute, 但不在情节中使用它们?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19438316/
我是一名优秀的程序员,十分优秀!