1

我正在尝试根据传单 js 地图类上的 location() 方法的成功创建事件处理程序

这是我目前所拥有的:

function initMap() {
    var map = L.map('map').locate({setView: false});

    map.on('locationfound', function(s) {
        map.setView(s.latlng).setZoom(14);
    });

    map.on('locationerror', function(e) {
        message: 'Sorry, We were unable to determine your current location.';
    });

    L.tileLayer('http://{s}.tile.cloudmade.com/0e35616818144f159fa412e57f190939/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);
}

's' 或 'e' 是否需要在定义事件处理程序之前启动,或者 s 和 e 是否通过事件处理程序承担 LocationEvent 对象的角色。如果是这样,这样做的正确方法是什么?

4

1 回答 1

0

它不需要启动。您作为事件侦听器传递的函数会自动以某些对象作为参数(在本例中为位置数据)调用。

于 2012-11-09T18:00:45.380 回答