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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。