...jb/basemapR: Contains functions to add base maps to ggplot...
Adding a basemap to ggplot2the base_map function can be added to a ggplot2 call as follows:library(ggplot2) library(sf) library(basemapR) ggplot() + base_map(st_bbox(localauth_data), increase_zoom = 2) + geom_sf(data = localauth_data, fill = NA)...