PlotOnStaticMap错误:点数错误$ Tile [," X"]:下标超出范围

时间:2014-12-18 15:16:31

标签: r rgooglemaps

我一直使用PlotOnStaticMap命令将点添加到Google地图中,但使用此代码

RangeVenetoLon<-c(10.58, 13.13)
RangeVenetoLat<-c(44.75, 46.71)
MapVeneto<-GetMap.bbox(lonR=RangeVenetoLon, latR=RangeVenetoLat, size = c(640,640),MINIMUMSIZE=T)
PlotOnStaticMap(MapVeneto,lon=xVeneto,lat=yVeneto, FUN = points, pch=16,col="blue")

我找到了

Error in points$Tile[, "X"] : subscript out of bounds

问题出在哪里?

1 个答案:

答案 0 :(得分:1)

当需要标准xVeneto时,您的yVenetomatrix个对象似乎是vector个对象。这有效:

    PlotOnStaticMap(MapVeneto,lon=xVeneto[,1],lat=yVeneto[,1], FUN = points, pch=16,col="blue")