我可以防止将传单地图平移出世界边缘吗?
本文介绍了我可以防止将传单地图平移出世界边缘吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有没有办法限制平移出世界边缘?在这张照片上,棕色是世界,灰色是空虚.我想让它不可能像这样平移.
Is there a way to limit panning out of the world's edge? On this picture, brown is the world, grey is emptiness. I want to make it impossible to pan like this.
推荐答案
Leaflet 允许您使用 maxBoundsViscosity
选项(值:0 到 1)控制地图抵抗被拖出边界的程度.将其设置为最大值将完全禁用拖出边界.
Leaflet allows you to control how much the map resists being dragged out of bounds with the maxBoundsViscosity
option (value: 0 to 1). Setting it to maximum disables dragging out of bounds entirely.
此功能在 1.0.0 中可用.相关拉取请求 包括 一个工作示例:
This feature is available in 1.0.0. The relevant pull request includes a working example:
这篇关于我可以防止将传单地图平移出世界边缘吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!