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


JavaScript ArcGIS WebMap.loadAll用法及代码示例


基本信息

以下是所在类或对象的基本信息。

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

ESM: import WebMap from "@arcgis/core/WebMap";

类: esri/WebMap

继承: WebMap > Map > Accessor

自从:用于 JavaScript 4.0 的 ArcGIS API

用法说明

WebMap.loadAll函数(或属性)的定义如下:

loadAll () {Promise<WebMap>}


自从:ArcGIS 适用于 JavaScript 4.9 的 API

加载与 webmap 关联的所有外部可加载资源。对于 web Map,这将加载地面、底图和图层。

返回:

类型 说明
Promise<WebMap> 当所有可加载资源都已加载时解析。如果至少有一个可加载资源未能加载,则拒绝。

例子:

// Load all resources but ignore if one or more of them failed to load
webmap.loadAll()
  .catch(function(error) {
    // Ignore any failed resources
  })
  .then(function() {
    console.log("All loaded");
  });

相关用法


注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 WebMap.loadAll。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。