我正在尝试根据传单 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 © <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 对象的角色。如果是这样,这样做的正确方法是什么?