我正在尝试使用R中的RgoogleMaps软件包。我在Windows Server 2008上运行R版本3.1.0。无论我尝试绘制什么,我都会得到一个空白的情节。我曾尝试写出外部设备,如pdf或png而没有运气。这是一个例子:
BrooklynMap <- GetMap(center="Brooklyn", zoom=13)
PlotOnStaticMap(BrooklynMap)
这个图只是在我的笔记本电脑上找到的,但它只是在我的Windows Server 2008机器上给出了一个空白的图。我还尝试使用带有以下代码的ggmap包:
mapImageData3 <- get_map(location = c(lon = -0.016179, lat = 51.538525),
color = "color",
source = "google",
maptype = "roadmap",
zoom = 16)
ggmap(mapImageData3,
extent = "device",
ylab = "Latitude",
xlab = "Longitude")
同样,这可以在我的笔记本电脑上运行,但在Windows Server 2008上只生成一个空白的图。
任何人都可以就可能导致此问题的原因提供指导吗?
谢谢你, 萨姆
答案 0 :(得分:0)
使用此代码,我可以将绘图保存到文件中:
BrooklynMap <- GetMap(center="Brooklyn", zoom=13,destfile = "MyTile3.png")
PlotOnStaticMap(BrooklynMap)
我试图使用png()来产生输出,但这并不起作用。要清楚,它仍然没有在R中以交互方式绘制。
答案 1 :(得分:0)
尝试使用带有ggmap()命令的显式print()语句,例如:像这样:
print(ggmap(mapImageData3, extent = "device", ylab = "Latitude", xlab = "Longitude"))
另外,请确保安装了最新版本的ggmap。