锁定地图视图的放大?
我正在使用 R 中的地图视图库创建一张用英国地图周围的点绘制的地图。我想禁用固定缩放或缩放按钮。由于 GDPR 问题,我不想要街景/放大。我想知道这个问题有解决办法吗?谢谢。
library(sf)
library(mapview)
mapview(datamap, xcol = "Longitude", ycol = "Latitude")
I am creating a map plotted with points around the UK map with map view library in R. I want to have a fixed zoom or zoom button disabled. I don't want a Street view/Zoom in due to GDPR issues. I wonder if there is a solution for this? Thanks.
library(sf)
library(mapview)
mapview(datamap, xcol = "Longitude", ycol = "Latitude")
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这对于 MapView 来说是不可能的,并且有点违背了包的目的。如果您想要这种类型的行为,您需要使用传单创建完整的地图,或者至少使用传单创建底图,然后将其与 MapView 一起使用:
This is not possible with mapview and kinda defeats the purpose of the package. If you want this type of behaviour you either need to create the complete map using leaflet or at least create the base map with leaflet and then use it with mapview: