Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以将 map.types 显式设置为 NULL 吗?这不能按预期工作。基本上,我不希望渲染基本地图。
library(mapview) mapView(breweries, map.types = NULL)
我不想消除相关的 CRS。我只是想消除自动渲染的基本地图。
在这篇文章中,来自 Github 的 mapview 的当前开发版本(2.8.1)具有所需的功能。刚设置map.types = NULL。感谢 TimSalabim 的提醒。
map.types = NULL
您可以在删除 shapefile 的 CRS 后在空白背景上绘图,方法是将其设置为NA.
NA
library(mapview) mapview(st_set_crs(breweries, NA))
您的评论表明您不想从 shapefile 中删除 crs。我想指出,上述函数不会从你的 shapefile 中永久删除 crs。