当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。