plot_tiles: Plot map tiles

View source: R/plot_tiles.R

plot_tilesR Documentation

Plot map tiles

Description

Plot map tiles.

Usage

plot_tiles(x, adjust = FALSE, add = FALSE, ...)

Arguments

x

a SpatRaster object.

adjust

if TRUE, plot the raster without zoom-in or zoom-out in the graphic device: add margins if the raster is smaller than the graphic device, zoom-in if the raster is larger than the graphic device.

add

whether to add the layer to an existing plot (TRUE) or not (FALSE).

...

bgalpha, interpolate, or other arguments passed to be passed to plotRGB

Note

This function is a wrapper for plotRGB from the terra package.

Examples

library(sf)
library(maptiles)
nc <- st_read(system.file("shape/nc.shp", package = "sf"), quiet = TRUE)
nc_osm <- get_tiles(nc, crop = TRUE)
plot_tiles(nc_osm)

maptiles documentation built on Sept. 14, 2023, 1:08 a.m.