I am trying to make a map using basemap() function
library(ggplot2)
library(ggOceanMapsData)
library(ggOceanMaps)
dt <- expand.grid(lon = c(-129, -124), lat = c(49, 53))
basemap(data = dt,land.border.col = "grey40")
I found a way to colour continents, but not the ocean.
I tried doing theme(panel.background = element_rect(fill = "lightblue")), but it just overlays this layer on top of the graph, and I could not figure out how to transfer it at the back, so that the baseline map was visible.

