如何使用JQuery以编程方式单击/拖动/等传单?

时间:2012-11-17 23:36:59

标签: jquery leaflet

我的传单地图目前完全位于透明画布元素的后面,因此它永远不会直接注册用户的鼠标事件。因此,我需要以编程方式将鼠标事件注册到传单。

如果我在我的应用程序中运行了快速入门教程代码,那么AKA:

  <div id="backgroundMap"></div>
    <script>
$("#backgroundMap").css("width",$(window).width()).css("height",$(window).height());
        var map = L.map('backgroundMap').setView([51.505, -0.09], 13);

        L.tileLayer('http://{s}.tile.cloudmade.com/API-Key/997/256/{z}/{x}/{y}.png', {
            attribution: 'Map data &copy; <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>, Imagery © <a href="http://cloudmade.com">CloudMade</a>',
            maxZoom: 18
        }).addTo(map);

        map.on('click', onMapClick);
    </script>

我是否需要鼠标事件才能在div backgroundMap,AKA $('#backgroundMap').click(...)中注册?还是应该在其他地方注册?

另外,当涉及传单时,我应该做一些完全不同的事情吗?

1 个答案:

答案 0 :(得分:1)

你想要在Leaflet中触发click / drag / etc事件以及那些事件的听众吗?或者你只是想以编程方式移动地图?

如果你想要后者,How to change the map center in leaflet会有各种答案。

这是你真正想要的命令,在answer中提到:

map.panTo(new L.LatLng(40.737, -73.923));