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


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


基本信息

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

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

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

类: esri/Basemap

继承: Basemap > Accessor

自从:用于 JavaScript 4.0 的 ArcGIS API

用法说明

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

loadAll () {Promise<Basemap>}


自从:ArcGIS 适用于 JavaScript 4.9 的 API

加载与底图关联的所有外部可加载资源。对于底图,这将加载所有基础图层和参考图层。

返回:

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

例子:

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

相关用法


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