Map component that adds a logo.
Usage
tm_logo(
file,
height,
margins,
between_margin,
stack,
position,
frame,
frame.lwd,
frame.r,
group.frame,
resize_as_group,
z
)
Arguments
- file
either a filename or url of a png image. If multiple files/urls are provided with a character vector, the logos are placed near each other. To specify logos for small multiples use a list of character values/vectors. In order to stack logos vertically, multiple
tm_logo
elements can be stacked.- height
height of the logo in number of text line heights. The width is scaled based the height and the aspect ratio of the logo. If multiple logos are specified by a vector or list, the heights can be specified accordingly.
- margins
margins
- between_margin
Margin between
- stack
stack with other map components, either
"vertical"
or"horizontal"
.- position
An object created with
tm_pos_in()
ortm_pos_out()
. Or, as a shortcut, a vector of two values, specifying the x and y coordinates. The first is"left"
,"center"
or"right"
(or upper case, meaning tighter to the map frame), the second"top"
,"center"
or"bottom"
. Numeric values are also supported, where 0, 0 means left bottom and 1, 1 right top. See also vignette about positioning.- frame
frame
- frame.lwd
frame line width
- frame.r
Radius of the rounded frame corners. 0 means no rounding.
- group.frame
put frame around all components that are drawn on the same location. Whether a frame is drawn is still decided by the
frame
argument of the 'main' (first) component.- resize_as_group
in case a component if rescaled because of the limited space, rescale the other components proportionally?
- z
z index, e.g. the place of the component relative to the other componets
Examples
data(World)
tm_shape(World) +
tm_polygons("HPI", fill.scale = tm_scale_intervals(values = "brewer.rd_yl_gn")) +
tm_logo(c("https://www.r-project.org/logo/Rlogo.png",
system.file("help", "figures", "logo.png", package = "tmap"))) +
tm_logo("http://blog.kulikulifoods.com/wp-content/uploads/2014/10/logo.png",
height=5, position = c("left", "top"))