當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JavaScript ArcGIS Print.on用法及代碼示例


基本信息

以下是所在類或對象的基本信息。

AMD: require(["esri/widgets/Print"], (Print) => { /* code goes here */ });

ESM: import Print from "@arcgis/core/widgets/Print";

類: esri/widgets/Print

繼承: Print > Widget > Accessor

自從:用於 JavaScript 4.2 的 ArcGIS API

用法說明

Print.on函數(或屬性)的定義如下:

on (type, listener) {Object} inherited


在實例上注冊事件處理程序。調用此方法以將事件與偵聽器鉤子。

參數:

類型說明

要偵聽的事件或事件數組。

listener Function

事件觸發時調用的函數。

返回:

類型 說明
Object 返回一個事件處理程序remove()應調用以停止偵聽事件的方法。
屬性 類型 說明
remove Function 調用時,從事件中刪除偵聽器。

例子:

view.on("click", function(event){
  // event is the event handle returned after the event fires.
  console.log(event.mapPoint);
});

相關用法


注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 Print.on。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。