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


JavaScript ArcGIS WebMap.allLayers用法及代碼示例


基本信息

以下是所在類或對象的基本信息。

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.allLayers函數(或屬性)的定義如下:

allLayers Collection<Layer> readonly inherited


Map中所有layers的扁平化集合。該集合包含底圖圖層、操作圖層和地麵圖層。 Group Layers 及其 children layers 也是該集合的一部分。底圖中的參考圖層將始終包含在集合的末尾。

不應將圖層直接添加到此集合中。它們隻能通過圖層、底圖或地麵屬性添加。

要訪問扁平的表集合,請改用 allTables 屬性。

例子:

// Find a layer with title "US Counties"
const foundLayer = map.allLayers.find(function(layer) {
 return layer.title === "US Counties";
});

// Create a filtered collection of the non-group layers
const nonGroupLayers = map.allLayers.filter(function(layer) {
 return !foundLayer.layers;
});

// Listen for any layer being added or removed in the Map
map.allLayers.on("change", function(event) {
 console.log("Layer added: ", event.added);
 console.log("Layer removed: ", event.removed);
 console.log("Layer moved: ", event.moved);
});

相關用法


注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 WebMap.allLayers。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。