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


JavaScript ArcGIS watchUtils.PromisedWatchHandle用法及代碼示例


基本信息

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

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

ESM: import * as watchUtils from "@arcgis/core/core/watchUtils";

對象: esri/core/watchUtils

自從:用於 JavaScript 4.0 的 ArcGIS API

用法說明

watchUtils.PromisedWatchHandle函數(或屬性)的定義如下:

PromisedWatchHandle Object


表示實現 Promise 接口的 watch ,在使用任何 watchOnce 實用程序函數時創建。

屬性:

類型說明
remove Function

取下 watch 手柄。

catch Function

添加當 promise 被拒絕時要調用的回調。

then Function

添加一個回調,當 promise 被解決時調用。

例子:

// Animate to the fullExtent of the first layer as soon as the view is
// ready.
watchUtils.whenOnce(view, "ready")
 .then(function(result){
    // Ensure the layer is loaded before accessing its fullExtent
    return view.map.layers.getItemAt(0).load();
  })
  .then(function(layer){
    // Animate to the full extent of the layer
    return view.goTo(layer.fullExtent);
  })
  .then(function(){
    // Animation is finished here
    console.log("Animation to first layer extent is finished");
  });

相關用法


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