Data is
> head(latlon1.df)
lat lon
1 35.86417 -95.65556
2 29.72333 -98.69444
3 29.52917 -97.46417
4 40.82806 -72.86556
5 26.73500 -81.05111
6 NA NA
ggmap(usa) +
geom_point(data = latlon1.df, mapping = aes(x = latlon1.df$lon, y = latlon1.df$lat), color = "red",size=1)
Keeping getting
mapping: x = ~latlon1.df$lon, y = ~latlon1.df$lat
geom_point: na.rm = FALSE
stat_identity: na.rm = FALSE
and I do not get a map or points The map was loaded with ggmap and works correctly as a map but the points do not appear on the map position_identity