I have:
> df1
lon lat grp
1 0.02310676 51.39729 0
2 -0.04666115 51.40614 0
3 0.09730595 51.38398 0
4 0.02458385 51.39580 1
and want to plot it on a map.
library(RgoogleMaps)
> center
[1] 51.389486 0.036657
mm=GetMap(center=center,zoom=10,maptype= "roadmap", destfile = "satellite.png")
PlotOnStaticMap(mm,lat=df1$lat,lon=df1$lon,pch=20,col=df1$grp, cex=2.3)
the result is 3 correctly placed markers, the missing marker is the one with a negative value.
Further examination:
PlotOnStaticMap(mm,lat=51.40614,lon=0.04666115,pch=20,col=c('red','dark blue'), cex=2.3)
shows a red dot where I want it, BUT:
PlotOnStaticMap(mm,lat=51.40614,lon=-0.04666115,pch=20,col=c('red','dark blue'), cex=2.3)
Any suggestions on how I can include points on the western hemisphere is greatly appreciated!
This seems to be no longer an issue in RgoogleMaps version 1.4.2, which has been released on 2018-06-01: