When I use a frame on a GeoListPlot, the longitude labels are correct but the latitude labels are not.
GeoListPlot[GeoPosition@{{32, -122}, {33, -123}, {34, -124}}, Frame -> True]
Can anyone tell me what's going on here?
These ticks only makes sense if you have the Equirectangular projection, add the option:
GeoProjection -> "Equirectangular"
so that they match.
Thank you, Sander! Here's the result in case anyone else encounters this issue.
GeoListPlot[GeoPosition@{{32, -122}, {33, -123}, {34, -124}}, Frame -> True, GeoProjection -> "Equirectangular"]