map.new {mapmisc} | R Documentation |
Start a new map
Description
Prepare a plotting window suitable for a map
Usage
map.new(x,legendRight=FALSE, buffer=0, mar=c(0,0,0,0), ...)
Arguments
x |
A spatial object from which an extent can be extracted. |
legendRight |
Leave room to the right for the legend produced by plotting a Raster object |
buffer |
passed to |
mar |
see |
... |
Additional arguments passed to |
Details
map.new
initiates a plot intended to contain a map covering the extent of x
,
with no margins.
Value
A list of the graphical parameters prior to calling map.new
Author(s)
Patrick Brown
Examples
nldTiles = terra::unwrap(nldTiles)
nldCities = terra::unwrap(nldCities)
oldpar = map.new(nldCities)
plot(nldTiles, add=TRUE)
points(nldCities)
par(oldpar)
[Package mapmisc version 2.1.0 Index]