对于 R 的 mapview 包,我可以明确地将 map.types 设置为 NULL 吗?

For R's mapview package, can I explicitly set map.types to NULL?

我可以明确地将 map.types 设置为 NULL 吗?这不按预期工作。基本上,我不想渲染底图。

library(mapview)
mapView(breweries, map.types = NULL)

我不想删除关联的 CRS。我只想去掉自动渲染的底图

您可以在删除 shapefile 的 CRS 后在空白背景上绘图,方法是将其设置为 NA

library(mapview)
mapview(st_set_crs(breweries, NA))

您的评论表明您不想从 shapefile 中删除 crs。我想指出的是,上述功能不会从您的 shapefile 中永久删除 crs。

截至 post,来自 Github 的 mapview 的当前开发版本 (2.8.1) 具有所需的功能。只需设置 map.types = NULL。感谢 TimSalabim 的提醒。