Can I explicitly set map.types to NULL? This does not work as expected. Basically, I don't want the base maps to render.
library(mapview)
mapView(breweries, map.types = NULL)
I don't want to eliminate the associated CRS. I just want to eliminate the base maps that automatically render.
As of this post, the current development version (2.8.1) of mapview from Github has the desired functionality. Just set map.types = NULL
. Thanks to TimSalabim for the heads up.