EventManager class
地圖控制項事件的管理員。 透過 atlas 的事件屬性公開。Map 類別。 無法由使用者具現化。
方法
方法詳細資料
add("boxzoomstart" | "boxzoomend" | "dragstart" | "drag" | "dragend" | "idle" | "load" | "movestart" | "move" | "moveend" | "pitchstart" | "pitch" | "pitchend" | "ready" | "render" | "resize" | "rotatestart" | "rotate" | "rotateend" | "tokenacquired" | "zoomstart" | "zoom" | "zoomend", (e: MapEvent) => void)
將事件新增至地圖。
function add(eventType: "boxzoomstart" | "boxzoomend" | "dragstart" | "drag" | "dragend" | "idle" | "load" | "movestart" | "move" | "moveend" | "pitchstart" | "pitch" | "pitchend" | "ready" | "render" | "resize" | "rotatestart" | "rotate" | "rotateend" | "tokenacquired" | "zoomstart" | "zoom" | "zoomend", callback: (e: MapEvent) => void)
參數
- eventType
-
"boxzoomstart" | "boxzoomend" | "dragstart" | "drag" | "dragend" | "idle" | "load" | "movestart" | "move" | "moveend" | "pitchstart" | "pitch" | "pitchend" | "ready" | "render" | "resize" | "rotatestart" | "rotate" | "rotateend" | "tokenacquired" | "zoomstart" | "zoom" | "zoomend"
事件名稱。
- callback
-
(e: MapEvent) => void
事件處理常式回呼。
add("click" | "contextmenu" | "dblclick" | "drag" | "dragstart" | "dragend" | "keydown" | "keypress" | "keyup" | "mousedown" | "mouseenter" | "mouseleave" | "mousemove" | "mouseout" | "mouseover" | "mouseup", HtmlMarker | HtmlMarker[], (e: TargetedEvent) => void)
將事件新增至 HtmlMarker () 。
function add(eventType: "click" | "contextmenu" | "dblclick" | "drag" | "dragstart" | "dragend" | "keydown" | "keypress" | "keyup" | "mousedown" | "mouseenter" | "mouseleave" | "mousemove" | "mouseout" | "mouseover" | "mouseup", target: HtmlMarker | HtmlMarker[], callback: (e: TargetedEvent) => void)
參數
- eventType
-
"click" | "contextmenu" | "dblclick" | "drag" | "dragstart" | "dragend" | "keydown" | "keypress" | "keyup" | "mousedown" | "mouseenter" | "mouseleave" | "mousemove" | "mouseout" | "mouseover" | "mouseup"
事件名稱。
- target
-
HtmlMarker | HtmlMarker[]
要為其新增事件的 HtmlMarker () 。
- callback
-
(e: TargetedEvent) => void
事件處理常式回呼。
add("data" | "sourcedata" | "styledata", (e: MapDataEvent) => void)
將資料事件新增至地圖。
function add(eventType: "data" | "sourcedata" | "styledata", callback: (e: MapDataEvent) => void)
參數
- eventType
-
"data" | "sourcedata" | "styledata"
資料事件名稱。
- callback
-
(e: MapDataEvent) => void
事件處理常式回呼。
add("dataadded" | "dataremoved", DataSource | DataSource[], (e: Shape[]) => void)
將事件新增至 DataSource () 。
function add(eventType: "dataadded" | "dataremoved", target: DataSource | DataSource[], callback: (e: Shape[]) => void)
參數
- eventType
-
"dataadded" | "dataremoved"
事件名稱。
- target
-
DataSource | DataSource[]
要為其新增事件的 DataSource () 。
- callback
-
(e: Shape[]) => void
事件處理常式回呼。
add("datasourceupdated", DataSource | DataSource[], (e: DataSource) => void)
將事件新增至 DataSource () 。
function add(eventType: "datasourceupdated", target: DataSource | DataSource[], callback: (e: DataSource) => void)
參數
- eventType
-
"datasourceupdated"
事件名稱。
- target
-
DataSource | DataSource[]
要為其新增事件的 DataSource () 。
- callback
-
(e: DataSource) => void
事件處理常式回呼。
add("drag" | "dragend" | "dragstart" | "open" | "close", Popup | Popup[], (e: TargetedEvent) => void)
將事件新增至 Popup () 。
function add(eventType: "drag" | "dragend" | "dragstart" | "open" | "close", target: Popup | Popup[], callback: (e: TargetedEvent) => void)
參數
- eventType
-
"drag" | "dragend" | "dragstart" | "open" | "close"
事件名稱。
- callback
-
(e: TargetedEvent) => void
事件處理常式回呼。
add("error", (e: MapErrorEvent) => void)
將事件新增至地圖。
function add(eventType: "error", callback: (e: MapErrorEvent) => void)
參數
- eventType
-
"error"
錯誤事件名稱。
- callback
-
(e: MapErrorEvent) => void
事件處理常式回呼。
add("layeradded" | "layerremoved", (e: Layer) => void)
將事件新增至地圖。
function add(eventType: "layeradded" | "layerremoved", callback: (e: Layer) => void)
參數
- eventType
-
"layeradded" | "layerremoved"
事件名稱。
- callback
-
(e: Layer) => void
事件處理常式回呼。
add("layeradded" | "layerremoved", Layer | Layer[], (e: Layer) => void)
將事件新增至 Layer () 。
function add(eventType: "layeradded" | "layerremoved", target: Layer | Layer[], callback: (e: Layer) => void)
參數
- eventType
-
"layeradded" | "layerremoved"
事件名稱。
- callback
-
(e: Layer) => void
事件處理常式回呼。
add("mapconfigurationchanged", (e: MapConfiguration) => void)
將 mapConfiguration 變更事件新增至地圖。
function add(eventType: "mapconfigurationchanged", callback: (e: MapConfiguration) => void)
參數
- eventType
-
"mapconfigurationchanged"
mapConfiguration 已變更的事件名稱
- callback
-
(e: MapConfiguration) => void
事件處理常式回呼
add("mousedown" | "mouseup" | "mouseover" | "mousemove" | "click" | "dblclick" | "mouseout" | "contextmenu", (e: MapMouseEvent) => void)
將滑鼠事件新增至地圖。
function add(eventType: "mousedown" | "mouseup" | "mouseover" | "mousemove" | "click" | "dblclick" | "mouseout" | "contextmenu", callback: (e: MapMouseEvent) => void)
參數
- eventType
-
"mousedown" | "mouseup" | "mouseover" | "mousemove" | "click" | "dblclick" | "mouseout" | "contextmenu"
滑鼠事件名稱。
- callback
-
(e: MapMouseEvent) => void
事件處理常式回呼。
add("mousedown" | "mouseup" | "mouseover" | "mousemove" | "click" | "dblclick" | "mouseout" | "mouseenter" | "mouseleave" | "contextmenu", Layer | Layer[], (e: MapMouseEvent) => void)
將滑鼠事件新增至 Layer (s) 。
function add(eventType: "mousedown" | "mouseup" | "mouseover" | "mousemove" | "click" | "dblclick" | "mouseout" | "mouseenter" | "mouseleave" | "contextmenu", target: Layer | Layer[], callback: (e: MapMouseEvent) => void)
參數
- eventType
-
"mousedown" | "mouseup" | "mouseover" | "mousemove" | "click" | "dblclick" | "mouseout" | "mouseenter" | "mouseleave" | "contextmenu"
事件名稱。
- callback
-
(e: MapMouseEvent) => void
事件處理常式回呼。
add("shapechanged", Shape | Shape[], (e: Shape) => void)
將事件新增至 Shape (s) 。
function add(eventType: "shapechanged", target: Shape | Shape[], callback: (e: Shape) => void)
參數
- eventType
-
"shapechanged"
事件名稱。
- callback
-
(e: Shape) => void
事件處理常式回呼。
add("sourceadded" | "sourceremoved", (e: Source) => void)
將事件新增至地圖。
function add(eventType: "sourceadded" | "sourceremoved", callback: (e: Source) => void)
參數
- eventType
-
"sourceadded" | "sourceremoved"
事件名稱。
- callback
-
(e: Source) => void
事件處理常式回呼。
add("sourceadded" | "sourceremoved", Source | Source[], (e: Source) => void)
將事件新增至 Source () 。
function add(eventType: "sourceadded" | "sourceremoved", target: Source | Source[], callback: (e: Source) => void)
參數
- eventType
-
"sourceadded" | "sourceremoved"
事件名稱。
- callback
-
(e: Source) => void
事件處理常式回呼。
add("stylechanged", (e: StyleChangedEvent) => void)
將 wheel 事件新增至地圖。
function add(eventType: "stylechanged", callback: (e: StyleChangedEvent) => void)
參數
- eventType
-
"stylechanged"
wheel 事件名稱。
- callback
-
(e: StyleChangedEvent) => void
事件處理常式回呼。
add("styleimagemissing", (e: string) => void)
將樣式影像遺漏事件新增至地圖。
function add(eventType: "styleimagemissing", callback: (e: string) => void)
參數
- eventType
-
"styleimagemissing"
樣式影像遺漏事件名稱。
- callback
-
(e: string) => void
事件處理常式回呼。
add("styleselected", StyleControl, (e: string) => void)
將事件新增至 StyleControl
function add(eventType: "styleselected", target: StyleControl, callback: (e: string) => void)
參數
- eventType
-
"styleselected"
事件名稱。
- target
- StyleControl
要為其新增事件的 StyleControl。
- callback
-
(e: string) => void
事件處理常式回呼。
add("touchstart" | "touchend" | "touchmove" | "touchcancel", (e: MapTouchEvent) => void)
將觸控事件新增至地圖。
function add(eventType: "touchstart" | "touchend" | "touchmove" | "touchcancel", callback: (e: MapTouchEvent) => void)
參數
- eventType
-
"touchstart" | "touchend" | "touchmove" | "touchcancel"
觸控事件名稱。
- callback
-
(e: MapTouchEvent) => void
事件處理常式回呼。
add("touchstart" | "touchend" | "touchmove" | "touchcancel", Layer | Layer[], (e: MapTouchEvent) => void)
將觸控事件新增至 Layer (s) 。
function add(eventType: "touchstart" | "touchend" | "touchmove" | "touchcancel", target: Layer | Layer[], callback: (e: MapTouchEvent) => void)
參數
- eventType
-
"touchstart" | "touchend" | "touchmove" | "touchcancel"
事件名稱。
- callback
-
(e: MapTouchEvent) => void
事件處理常式回呼。
add("wheel", (e: MapMouseWheelEvent) => void)
將 wheel 事件新增至地圖。
function add(eventType: "wheel", callback: (e: MapMouseWheelEvent) => void)
參數
- eventType
-
"wheel"
wheel 事件名稱。
- callback
-
(e: MapMouseWheelEvent) => void
事件處理常式回呼。
add("wheel", Layer | Layer[], (e: MapMouseWheelEvent) => void)
將 wheel 事件新增至 Layer (s) 。
function add(eventType: "wheel", target: Layer | Layer[], callback: (e: MapMouseWheelEvent) => void)
參數
- eventType
-
"wheel"
事件名稱。
- callback
-
(e: MapMouseWheelEvent) => void
事件處理常式回呼。
addOnce("boxzoomstart" | "boxzoomend" | "dragstart" | "drag" | "dragend" | "idle" | "load" | "movestart" | "move" | "moveend" | "pitchstart" | "pitch" | "pitchend" | "ready" | "render" | "resize" | "rotatestart" | "rotate" | "rotateend" | "tokenacquired" | "zoomstart" | "zoom" | "zoomend", (e: MapEvent) => void)
將事件新增至地圖。
function addOnce(eventType: "boxzoomstart" | "boxzoomend" | "dragstart" | "drag" | "dragend" | "idle" | "load" | "movestart" | "move" | "moveend" | "pitchstart" | "pitch" | "pitchend" | "ready" | "render" | "resize" | "rotatestart" | "rotate" | "rotateend" | "tokenacquired" | "zoomstart" | "zoom" | "zoomend", callback: (e: MapEvent) => void)
參數
- eventType
-
"boxzoomstart" | "boxzoomend" | "dragstart" | "drag" | "dragend" | "idle" | "load" | "movestart" | "move" | "moveend" | "pitchstart" | "pitch" | "pitchend" | "ready" | "render" | "resize" | "rotatestart" | "rotate" | "rotateend" | "tokenacquired" | "zoomstart" | "zoom" | "zoomend"
事件名稱。
- callback
-
(e: MapEvent) => void
事件處理常式回呼。
addOnce("click" | "contextmenu" | "dblclick" | "drag" | "dragstart" | "dragend" | "keydown" | "keypress" | "keyup" | "mousedown" | "mouseenter" | "mouseleave" | "mousemove" | "mouseout" | "mouseover" | "mouseup", HtmlMarker, (e: TargetedEvent) => void)
將事件新增至 HtmlMarker。
function addOnce(eventType: "click" | "contextmenu" | "dblclick" | "drag" | "dragstart" | "dragend" | "keydown" | "keypress" | "keyup" | "mousedown" | "mouseenter" | "mouseleave" | "mousemove" | "mouseout" | "mouseover" | "mouseup", target: HtmlMarker, callback: (e: TargetedEvent) => void)
參數
- eventType
-
"click" | "contextmenu" | "dblclick" | "drag" | "dragstart" | "dragend" | "keydown" | "keypress" | "keyup" | "mousedown" | "mouseenter" | "mouseleave" | "mousemove" | "mouseout" | "mouseover" | "mouseup"
事件名稱。
- target
- HtmlMarker
要為其新增事件的 HtmlMarker。
- callback
-
(e: TargetedEvent) => void
事件處理常式回呼。
addOnce("data" | "sourcedata" | "styledata", (e: MapDataEvent) => void)
將資料事件新增至地圖。
function addOnce(eventType: "data" | "sourcedata" | "styledata", callback: (e: MapDataEvent) => void)
參數
- eventType
-
"data" | "sourcedata" | "styledata"
資料事件名稱。
- callback
-
(e: MapDataEvent) => void
事件處理常式回呼。
addOnce("dataadded" | "dataremoved", DataSource, (e: Shape[]) => void)
將事件加入至 DataSource。
function addOnce(eventType: "dataadded" | "dataremoved", target: DataSource, callback: (e: Shape[]) => void)
參數
- eventType
-
"dataadded" | "dataremoved"
事件名稱。
- target
- DataSource
要為其加入事件的 DataSource。
- callback
-
(e: Shape[]) => void
事件處理常式回呼。
addOnce("datasourceupdated", DataSource, (e: DataSource) => void)
將事件加入至 DataSource。
function addOnce(eventType: "datasourceupdated", target: DataSource, callback: (e: DataSource) => void)
參數
- eventType
-
"datasourceupdated"
事件名稱。
- target
- DataSource
要為其加入事件的 DataSource。
- callback
-
(e: DataSource) => void
事件處理常式回呼。
addOnce("drag" | "dragend" | "dragstart" | "open" | "close", Popup, (e: TargetedEvent) => void)
將事件新增至 Popup。
function addOnce(eventType: "drag" | "dragend" | "dragstart" | "open" | "close", target: Popup, callback: (e: TargetedEvent) => void)
參數
- eventType
-
"drag" | "dragend" | "dragstart" | "open" | "close"
事件名稱。
- target
- Popup
要為其新增事件的 Popup。
- callback
-
(e: TargetedEvent) => void
事件處理常式回呼。
addOnce("error", (e: MapErrorEvent) => void)
將事件新增至地圖。
function addOnce(eventType: "error", callback: (e: MapErrorEvent) => void)
參數
- eventType
-
"error"
錯誤事件名稱。
- callback
-
(e: MapErrorEvent) => void
事件處理常式回呼。
addOnce("layeradded" | "layerremoved", (e: Layer) => void)
將事件新增至地圖。
function addOnce(eventType: "layeradded" | "layerremoved", callback: (e: Layer) => void)
參數
- eventType
-
"layeradded" | "layerremoved"
事件名稱。
- callback
-
(e: Layer) => void
事件處理常式回呼。
addOnce("layeradded" | "layerremoved", Layer, (e: Layer) => void)
將觸控事件新增至 Layer。
function addOnce(eventType: "layeradded" | "layerremoved", target: Layer, callback: (e: Layer) => void)
參數
- eventType
-
"layeradded" | "layerremoved"
觸控事件名稱。
- target
- Layer
要為其加入事件的 Layer。
- callback
-
(e: Layer) => void
事件處理常式回呼。
addOnce("mousedown" | "mouseup" | "mouseover" | "mousemove" | "click" | "dblclick" | "mouseout" | "contextmenu", (e: MapMouseEvent) => void)
將滑鼠事件新增至地圖。
function addOnce(eventType: "mousedown" | "mouseup" | "mouseover" | "mousemove" | "click" | "dblclick" | "mouseout" | "contextmenu", callback: (e: MapMouseEvent) => void)
參數
- eventType
-
"mousedown" | "mouseup" | "mouseover" | "mousemove" | "click" | "dblclick" | "mouseout" | "contextmenu"
滑鼠事件名稱。
- callback
-
(e: MapMouseEvent) => void
事件處理常式回呼。
addOnce("mousedown" | "mouseup" | "mouseover" | "mousemove" | "click" | "dblclick" | "mouseout" | "mouseenter" | "mouseleave" | "contextmenu", Layer, (e: MapMouseEvent) => void)
將滑鼠事件新增至 Layer。
function addOnce(eventType: "mousedown" | "mouseup" | "mouseover" | "mousemove" | "click" | "dblclick" | "mouseout" | "mouseenter" | "mouseleave" | "contextmenu", target: Layer, callback: (e: MapMouseEvent) => void)
參數
- eventType
-
"mousedown" | "mouseup" | "mouseover" | "mousemove" | "click" | "dblclick" | "mouseout" | "mouseenter" | "mouseleave" | "contextmenu"
滑鼠事件名稱。
- target
- Layer
要為其加入事件的 Layer。
- callback
-
(e: MapMouseEvent) => void
事件處理常式回呼。
addOnce("shapechanged", Shape, (e: Shape) => void)
將事件加入至 Shape。
function addOnce(eventType: "shapechanged", target: Shape, callback: (e: Shape) => void)
參數
- eventType
-
"shapechanged"
事件名稱。
- target
- Shape
要為其新增事件的 Shape。
- callback
-
(e: Shape) => void
事件處理常式回呼。
addOnce("sourceadded" | "sourceremoved", (e: Source) => void)
將事件新增至地圖。
function addOnce(eventType: "sourceadded" | "sourceremoved", callback: (e: Source) => void)
參數
- eventType
-
"sourceadded" | "sourceremoved"
事件名稱。
- callback
-
(e: Source) => void
事件處理常式回呼。
addOnce("sourceadded" | "sourceremoved", Source, (e: Source) => void)
將事件加入至 Source。
function addOnce(eventType: "sourceadded" | "sourceremoved", target: Source, callback: (e: Source) => void)
參數
- eventType
-
"sourceadded" | "sourceremoved"
事件名稱。
- target
- Source
要為其新增事件的來源。
- callback
-
(e: Source) => void
事件處理常式回呼。
addOnce("stylechanged", (e: StyleChangedEvent) => void)
將 wheel 事件新增至地圖。
function addOnce(eventType: "stylechanged", callback: (e: StyleChangedEvent) => void)
參數
- eventType
-
"stylechanged"
wheel 事件名稱。
- callback
-
(e: StyleChangedEvent) => void
事件處理常式回呼。
addOnce("styleimagemissing", (e: string) => void)
將樣式影像遺漏事件新增至地圖。
function addOnce(eventType: "styleimagemissing", callback: (e: string) => void)
參數
- eventType
-
"styleimagemissing"
樣式影像遺漏事件名稱。
- callback
-
(e: string) => void
事件處理常式回呼。
addOnce("styleselected", StyleControl, (e: string) => void)
將事件新增至 StyleControl
function addOnce(eventType: "styleselected", target: StyleControl, callback: (e: string) => void)
參數
- eventType
-
"styleselected"
事件名稱。
- target
- StyleControl
要為其新增事件的 StyleControl。
- callback
-
(e: string) => void
事件處理常式回呼。
addOnce("touchstart" | "touchend" | "touchmove" | "touchcancel", (e: MapTouchEvent) => void)
將觸控事件新增至地圖。
function addOnce(eventType: "touchstart" | "touchend" | "touchmove" | "touchcancel", callback: (e: MapTouchEvent) => void)
參數
- eventType
-
"touchstart" | "touchend" | "touchmove" | "touchcancel"
觸控事件名稱。
- callback
-
(e: MapTouchEvent) => void
事件處理常式回呼。
addOnce("touchstart" | "touchend" | "touchmove" | "touchcancel", Layer, (e: MapTouchEvent) => void)
將觸控事件新增至 Layer。
function addOnce(eventType: "touchstart" | "touchend" | "touchmove" | "touchcancel", target: Layer, callback: (e: MapTouchEvent) => void)
參數
- eventType
-
"touchstart" | "touchend" | "touchmove" | "touchcancel"
觸控事件名稱。
- target
- Layer
要為其加入事件的 Layer。
- callback
-
(e: MapTouchEvent) => void
事件處理常式回呼。
addOnce("wheel", (e: MapMouseWheelEvent) => void)
將 wheel 事件新增至地圖。
function addOnce(eventType: "wheel", callback: (e: MapMouseWheelEvent) => void)
參數
- eventType
-
"wheel"
wheel 事件名稱。
- callback
-
(e: MapMouseWheelEvent) => void
事件處理常式回呼。
addOnce("wheel", Layer, (e: MapMouseWheelEvent) => void)
將 wheel 事件新增至 Layer。
function addOnce(eventType: "wheel", target: Layer, callback: (e: MapMouseWheelEvent) => void)
參數
- eventType
-
"wheel"
wheel 事件名稱。
- target
- Layer
要為其加入事件的 Layer。
- callback
-
(e: MapMouseWheelEvent) => void
事件處理常式回呼。
invoke(string, any)
在地圖上叫用事件。 這會導致對應上呼叫具有指定事件名稱的所有事件處理常式。
function invoke(eventType: string, args: any): any
參數
- eventType
-
string
要叫用的事件名稱。
- args
-
any
要傳遞至回呼的資料。
傳回
any
invoke(string, any, any)
叫用目標的 事件。 這會導致目標上呼叫具有指定事件名稱的所有事件處理常式。
function invoke(eventType: string, target: any, args: any): any
參數
- eventType
-
string
要叫用的事件名稱。
- target
-
any
要叫用事件的目標。 支援的目標型別為 Layer、HtmlMarker 和 Popup。
- args
-
any
要傳遞至回呼的資料。 資料可以是 null
,但不能是 undefined
。
傳回
any
remove(string, (e: void | Layer | MapEvent | MapDataEvent | MapMouseEvent | MapTouchEvent | MapMouseWheelEvent | Source | string | MapConfiguration) => void)
從對應中移除事件接聽程式。
function remove(eventType: string, callback: (e: void | Layer | MapEvent | MapDataEvent | MapMouseEvent | MapTouchEvent | MapMouseWheelEvent | Source | string | MapConfiguration) => void)
參數
- eventType
-
string
事件名稱。
- callback
-
(e: void | Layer | MapEvent | MapDataEvent | MapMouseEvent | MapTouchEvent | MapMouseWheelEvent | Source | string | MapConfiguration) => void
事件處理常式回呼。
remove(string, DataSource | DataSource[], (e: DataSource | Shape[]) => void)
從 DataSource () 中移除事件接聽程式。
function remove(eventType: string, target: DataSource | DataSource[], callback: (e: DataSource | Shape[]) => void)
參數
- eventType
-
string
事件名稱。
- target
-
DataSource | DataSource[]
要移除事件的 DataSource () 。
- callback
-
(e: DataSource | Shape[]) => void
事件處理常式回呼。
remove(string, HtmlMarker | HtmlMarker[], (e: TargetedEvent) => void)
從 HtmlMarker () 中移除事件接聽程式。
function remove(eventType: string, target: HtmlMarker | HtmlMarker[], callback: (e: TargetedEvent) => void)
參數
- eventType
-
string
事件名稱。
- target
-
HtmlMarker | HtmlMarker[]
要移除事件的 HtmlMarker () 。
- callback
-
(e: TargetedEvent) => void
事件處理常式回呼。
remove(string, Layer | Layer[], (e: void | MapMouseEvent | MapTouchEvent | MapMouseWheelEvent | Layer) => void)
從 Layer () 中移除事件接聽程式。
function remove(eventType: string, target: Layer | Layer[], callback: (e: void | MapMouseEvent | MapTouchEvent | MapMouseWheelEvent | Layer) => void)
參數
- eventType
-
string
事件名稱。
- callback
-
(e: void | MapMouseEvent | MapTouchEvent | MapMouseWheelEvent | Layer) => void
事件處理常式回呼。
remove(string, Popup | Popup[], (e: TargetedEvent) => void)
從 Popup () 中移除事件接聽程式。
function remove(eventType: string, target: Popup | Popup[], callback: (e: TargetedEvent) => void)
參數
- eventType
-
string
事件名稱。
- callback
-
(e: TargetedEvent) => void
事件處理常式回呼。
remove(string, Shape | Shape[], (e: Shape) => void)
從 Shape () 中移除事件接聽程式。
function remove(eventType: string, target: Shape | Shape[], callback: (e: Shape) => void)
參數
- eventType
-
string
事件名稱。
- callback
-
(e: Shape) => void
事件處理常式回呼。
remove(string, Source | Source[], (e: Source) => void)
從來源 () 中移除事件接聽程式。
function remove(eventType: string, target: Source | Source[], callback: (e: Source) => void)
參數
- eventType
-
string
事件名稱。
- callback
-
(e: Source) => void
事件處理常式回呼。
remove(string, StyleControl, (e: string) => void)
移除 StyleControl 的事件
function remove(eventType: string, target: StyleControl, callback: (e: string) => void)
參數
- eventType
-
string
事件名稱。
- target
- StyleControl
要新增事件的 StyleControl。
- callback
-
(e: string) => void
事件處理常式回呼。