- alpha
transparency (opacity) parameter applied to whole map. By default, it is set to 0.7
if basemaps are used, and 1
otherwise.
- colorNA
default color for missing values in interactive mode. If the color of missing values is not defined in the layer functions (e.g. tm_fill
), then the default color is taken from the na
value of the aes.color
argument in tm_layout
. This colorNA
argument (if not NA
itself) overrides that default value. For interactive maps, it can be useful to set colorNA
to NULL
, which means transparent.
- projection
projection. Either a EPSG number, or a leaflet_crs
object created with leafletCRS
. By default, the Web Mercator (3857) is used, since the vast majority of basemaps are rendered accordingly. Other standards are EPSG numbers 4326 (WGS84) and 3395 (Mercator). If set to 0, the projection of the master shape is used (see tm_shape
) provided that a EPSG number can be extracted.
- symbol.size.fixed
should symbol sizes be fixed while zooming?
- dot.size.fixed
should dot sizes be fixed while zooming?
- text.size.variable
should text size variables be allowed in view mode? By default FALSE
, since in many applications, the main reason to vary text size is to prevent occlusion in plot mode, which is often not a problem in view mode due to the ability to zoom in.
- bbox
bounding box. One of the following:
If set, it overrides set.view
and all bbox arguments of tm_shape
.
- set.bounds
logical that determines whether maximum bounds are set, or a numeric vector of four values that specify the lng1, lat1, lng2, and lat2 coordinates (see setMaxBounds
).
- set.view
numeric vector that determines the view. Either a vector of three: lng, lat, and zoom, or a single value: zoom. See setView
. Only applicable if bbox
is not specified
- set.zoom.limits
numeric vector of two that set the minimum and maximum zoom levels (see tileOptions
).
- view.legend.position
Character vector of two values, specifying the position of the legend. Use "left" or "right" for the first value and "top" or "bottom" for the second value. It overrides the value of legend.position
of tm_layout
, unless set to NA
.
- control.position
Character vector of two values, specifying the position of the layer control UI. Use "left" or "right" for the first value and "top" or "bottom" for the second value.
- legend.position
not used anymore, renamed to view.legend.position
- leaflet.options
other options passed on via leafletOptions
to leaflet.js map creation (see leaflet, follow Docs, Map, Creation). Named list, where the names correspond to the variable names. Tip: use zoomSnap
and zoomDelta
for fractional zooming.