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


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


基本信息

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

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.allTables函数(或属性)的定义如下:

allTables Collection<Layer> readonly inherited


自从:ArcGIS 适用于 JavaScript 4.17 的 API

Map层次结构中任意位置的表格的扁平集合。除了任何 group layer tables 之外,这还将包含Map表中的各个表。为了使表被识别,FeatureLayer 属性必须返回 true

目前,只能识别feature layer 表。

要访问空间层,请改用allLayers 属性。

例子:

// A feature layer where isTable = true.
const foundTable = map.allTables.find(function(table) {
  // Find a table with title "US Counties"
  return table.title === "US Counties";
});

相关用法


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