I am trying to add Lat and Lon axis titles to a map in R maps.
I cannot find the appropriate arguments in R maps.
library(rMaps)
chile <- map("worldHires", regions="Chile", plot=FALSE, fill=TRUE)
map("worldHires", xlim = c(-90,-50), ylim = c(-60,-10))
map(chile, col="grey", fill=TRUE, add=TRUE)
map.axes()
map.scale(metric = TRUE, ratio = FALSE, cex = 0.7)
I want to add Latitude and Longitude as axis titles.
Was it that what you were looking for?