Leaflet:当边界改变时触发一个事件

Leaflet : Firing an event when bounds change(Leaflet:当边界改变时触发一个事件)
本文介绍了Leaflet:当边界改变时触发一个事件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我正在使用 leaflet 开发一个新的应用程序.您可以在这里了解该应用.

I am using leaflet to develop a new application. You can have an idea of the app here.

我想在地图边界发生变化时触发一个事件.我查看了文档,但找不到与此相关的任何内容.

I would like to fire an event whenever the bounds of the map change. I looked at the doc but couldn't find anything related to that.

我找到了 getBounds() 方法,以及可能的 事件方法,但两者都没有结合.

I have found the getBounds() method, and the list of possible event methods, but nothing combining both.

我看到的唯一另一种可能性是检查鼠标拖动和滚动事件并每次检查边界.但我希望有更好的事情可以做.

The only other possibility I see to do that is to check for mouse drag and scroll events and check the bounds every time. But I was hoping there would be something better to do.

你有更好的主意吗?谢谢!

Would you have a better idea? Thanks!

推荐答案

每次移动地图(通过平移或缩放)时都会更新地图边界.所以你可以使用 moveend 事件来达到你的目的

Map bounds are updated each time the map is moved (either by pan or zoom). So you can use moveend event for your purpose

map.on('moveend', function(e) {
   var bounds = map.getBounds();
});

这篇关于Leaflet:当边界改变时触发一个事件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

在开发JS过程中,会经常遇到两个小数相运算的情况,但是运算结果却与预期不同,调试一下发现计算结果竟然有那么长一串尾巴。如下图所示: 产生原因: JavaScript对小数运算会先转成二进制,运算完毕再转回十进制,过程中会有丢失,不过不是所有的小数间运算会
问题描述: 在javascript中引用js代码,然后导致反斜杠丢失,发现字符串中的所有\信息丢失。比如在js中引用input type=text onkeyup=value=value.replace(/[^\d]/g,) ,结果导致正则表达式中的\丢失。 问题原因: 该字符串含有\,javascript对字符串进行了转
Rails/Javascript: How to inject rails variables into (very) simple javascript(Rails/Javascript:如何将 rails 变量注入(非常)简单的 javascript)
CoffeeScript always returns in anonymous function(CoffeeScript 总是以匿名函数返回)
Ordinals in words javascript(javascript中的序数)
getFullYear returns year before on first day of year(getFullYear 在一年的第一天返回前一年)