# ZoomEvent
ZoomEvent
是其他类用来生成特定类型的鼠标事件的类,例如“boxzoomstart”或“boxzoomend”。有关可用事件的完整列表,请参阅``Mapevents
。
类型: Object
# Properties
originalEvent
**鼠标事件
**触发 boxzoom 事件的 DOM 事件。可以是一个MouseEvent
或KeyboardEvent
type
**string
**始发事件的类型。有关可用事件的完整列表,请参阅``Mapevents
。target
[Map][1]Map
触发事件的实例
# Examples
// Example of a BoxZoomEvent of type "boxzoomstart"
{
originalEvent: {...},
type: "boxzoomstart",
target: {...}
}
1
2
3
4
5
6
2
3
4
5
6