Create a simple theme for a map.
gg_theme_map(
family = "",
size_title = 11,
size_subtitle = 10,
size_body = 10,
face_title = "bold",
face_subtitle = "plain",
face_body = "plain",
pal_title = "#000000",
pal_subtitle = "#000000",
pal_body = "#323232"
)
The font for all text to use. Defaults to "".
The size of the title font. Defaults to 11.
The size of the subtitle font. Defaults to 10.
The size of all font other than the title or subtitle. Defaults to 10.
The face of the title font. Defaults to "bold".
The face of the subtitle font. Defaults to "plain".
The face of all font other than the title or subtitle. Defaults to "plain".
The colour palette for the title font. Defaults to "#000000".
The colour palette for the subtitle font. Defaults to "#000000".
The colour palette for all font other than the title or subtitle. Defaults to "#323232".
A ggplot theme.