A theme for spatial/map plots with no axes, ticks, or gridlines. Retains title, subtitle, and caption styling.
Usage
theme_aib_map(
base_size = 11,
base_family = NULL,
gridlines = c("none", "x", "y", "xy")
)Value
A ggplot2::theme() object.
Examples
library(ggplot2)
ggplot(mtcars, aes(mpg, wt)) +
geom_point() +
theme_aib_map()