例一,给map类注册一个事件,查看文档有以下说明:
Register a listener for a particular event with the following syntax
map.events.register(type, obj, listener);
Listeners will be called with a reference to an event object. The properties of this event depends on exactly what happened.
测试通过,当鼠标在地图上移动时候,触发了该事件。
这里我有个疑问:注册事件的时候第二个参数究竟有什么用?
经过多次测试发现,在回调函数的参数evt,也没有注册回调函数的第二参数传回来。
例二,给地图量测工具注册一个返回结果的事件。
Measure类继承自Control类,在我看源码的时候发现了在Control类中有这样的一个属性:
Register a listener for a particular event with the following syntax
map.events.register(type, obj, listener);
Listeners will be called with a reference to an event object. The properties of this event depends on exactly what happened.
于是我写了以下测试代码:
map.events.register("mousemove", null, map_mousemove);
function map_mousemove(evt) {
var obj = evt;
}
测试通过,当鼠标在地图上移动时候,触发了该事件。
这里我有个疑问:注册事件的时候第二个参数究竟有什么用?
经过多次测试发现,在回调函数的参数evt,也没有注册回调函数的第二参数传回来。
例二,给地图量测工具注册一个返回结果的事件。
Measure类继承自Control类,在我看源码的时候发现了在Control类中有这样的一个属性:
/**
* APIProperty: eventListeners
* {Object} If set as an option at construction, the eventListeners
* object wi