I am new to using spacial data in R. I am trying to plot 2 layers on a base map but for some reason I can't get the syntax right.
qmplot((Longitude, Latitude, data = df1, colour = "blue",
zoom = 7) +
geom_point(
aes(x = Longitude, y= Latitude),
data = df2, colour = "red")
)