MapBaseEvent<TTarget>

所有地图事件的基础类型,包含事件名称和触发目标

interface MapBaseEvent<TTarget = Map> {
    target: TTarget;
    type: string;
}

属性

事件触发目标

事件类型名称