我在使用 R 的 PlotGoogleMap 包时遇到问题。当我尝试使用此包绘制我的点(纬度,经度)时,我的一些点没有被绘制出来。我不知道如何处理这个问题。
coordinates(engine) <- ~longt+latit # convert to SPDF
proj4string(engine) <- CRS("+proj=longlat +datum=WGS84 +ellps=WGS84 +towgs84=0,0,0")
ic <- iconlabels(engine$vehicle_id, height=10,colPalette=rainbow(4), icon=TRUE)
m <- plotGoogleMaps(engine,filename='myMap.htm', iconMarker=ic,colPalette=rainbow(4),mapTypeId='ROADMAP',layerName = 'Vehicle_id')
这是我正在使用的代码^
这是一个示例数据。
Vehicle_id longt latit
24143 86.4311 23.735
24143 86.439 23.7392
24143 86.4916 23.7275
24143 86.5216 23.7695
24143 86.5885 23.8091
24143 86.6498 23.7984
24143 86.7148 23.7937
24143 86.439 23.7392
24143 86.5249 23.723
24143 86.5882 23.8088
24143 86.7261 23.8197