Skip to contents

mapview provides a couple of special convenience functions for all supported spatial data types:

  • viewExtent to view extents/bounding boxes of objects
  • syncing of multiple maps

There are also a few raster-only specialty functions:

  • viewRGB to view RGB (raster) images

For the following:

  • plainview to view raster images without map background
  • slideview to compare two raster/RGB images
  • cubeview to view 3D raster cubes

please refer to the individual help pages (e.g. ?cubeview)

All types

viewExtent

This can be handy to check whether features overlap or to just check where things are roughly located (e.g. in case we have big data sets, e.g. raster stacks).

library(mapview)
library(leaflet)
library(plainview)
library(leafsync)

viewExtent(poppendorf, color = "red") + viewExtent(breweries)

sync & latticeView

sync can be used to produce small multiples that are synchronised. Meaning that if we zoom into one panel, all other panels will also zoom. Additionally, the mouse position is also synced (indicated via a red circle). sync provides a very convenient way to compare multiple attributes of the same feature geometry set.

We can sync all panels:

m1 <- mapview(breweries, zcol = "village", map.types = "Esri.WorldImagery")
m2 <- mapview(breweries, zcol = "brewery", col.regions = heat.colors)
m3 <- mapview(breweries, zcol = "founded", legend = TRUE)
m4 <- leaflet() %>% addTiles() %>% addCircleMarkers(data = breweries)

sync(m1, m2, m3, m4)


Any combination of panels:

sync(list(m1, m2, m3, m4),
     sync = list(c(1, 4),
                 c(2, 3)))