Plot an sf object
Plot an sf object. This is mostly a wrapper around plot(st_geometry(x), ...)
.
mf_base( x, col = "grey80", border = "grey20", bg = "white", cex = 1, pch = 20, lwd = 0.7, lty = 1, add = FALSE, ... )
x
: object of class sf
, sfc
or sfg
col
: colorborder
: border colorbg
: background colorcex
: point sizepch
: pch (point type) for symbolslwd
: border widthlty
: line or border typeadd
: whether to add the layer to an existing plot (TRUE) or not (FALSE)...
: further parameters from plot for sfc objectsx is (invisibly) returned.
library(sf) mtq <- mf_get_mtq() mf_map(mtq, type = "base") mf_map(mtq, type = "base", col = "blue")