- crs
Coordinate reference system for the basemap. Accepts a numeric
EPSG code, a PROJ string, or an [sf::crs] object. The default is `4326`
(WGS84).
- filter_attribute
Name of the column in the `countries` dataset used
for filtering. Default `"SOC"`.
- filter
Character vector specifying which values of `filter_attribute`
to retain. If `NULL` (default), no filtering is applied. When non-`NULL`,
only the selected countries are drawn, and the ocean, coastlines,
administrative boundaries, and frame are omitted.
- show_ocean
Logical; draw an ocean background polygon. Default `TRUE`.
Ignored when `filter` is not `NULL`.
- show_admin_boundaries
Logical; draw administrative and political
boundaries (international, regional, undefined/disputed, and military
demarcation lines). Default `TRUE`. Ignored when `filter` is not `NULL`.
- show_frame
Logical; draw an outer frame following the projected
outline of the world. Default `FALSE`. Ignored when `filter` is not `NULL`.
- ocean_fill
Fill color for the ocean polygon. Default `"#c7e8fb"`.
- frame_color
Color of the outer frame line. Default `"grey20"`.
- frame_size
Line width of the outer frame. Default `0.1`.
- frame_linetype
Line type of the outer frame. Default `"solid"`.
- country_fill
Fill color for country polygons. Default `"grey90"`.
- country_boundary_color
Color of country boundary outlines.
Default `"transparent"`.
- country_boundary_size
Width of country boundary outlines.
Default `0.1`.
- country_boundary_linetype
Line type of country boundaries.
Default `"solid"`.
- coastline_color
Color of the coastline layer. Default `"#26ace7"`.
- coastline_size
Line width of coastlines. Default `0.1`.
- coastline_linetype
Line type of coastlines. Default `"solid"`.
- international_boundary_color
Color for international boundary lines.
Default `"grey20"`.
- international_boundary_size
Width for international boundaries.
Default `0.1`.
- international_boundary_linetype
Line type for international
boundaries. Default `"solid"`.
- regional_boundary_color
Color for regional boundaries (e.g. states).
Default `"grey20"`.
- regional_boundary_size
Width for regional boundaries. Default `0.1`.
- regional_boundary_linetype
Line type for regional boundaries.
Default `"dashed"`.
- undefined_boundary_color
Color for undefined or disputed boundaries.
Default `"grey20"`.
- undefined_boundary_size
Width for undefined boundaries. Default `0.1`.
- undefined_boundary_linetype
Line type for undefined boundaries.
Default `"longdash"`.
- military_boundary_color
Color for military demarcation lines.
Default `"grey20"`.
- military_boundary_size
Width for military demarcation lines.
Default `0.1`.
- military_boundary_linetype
Line type for military demarcation lines.
Default `"dotted"`.
- ...
Additional arguments passed to [ggplot2::geom_sf()] for the
country polygons layer.