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


JavaScript ArcGIS Map.addMany用法及代碼示例


基本信息

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

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

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

類: esri/Map

繼承: Map > Accessor

子類: WebMap , WebScene

自從:用於 JavaScript 4.0 的 ArcGIS API

用法說明

Map.addMany函數(或屬性)的定義如下:

addMany (layers, index)


將圖層或圖層數組添加到圖層集合中。調用此方法時,將發出 before-changesbefore-addafter-addafter-changeschange 事件。

圖層集合上的push() 方法也可用於添加一個或多個圖層。

參數:

類型說明
layers Layer[]

要添加到圖層集合中的圖層。

index Number
可選的

可以將圖層添加到圖層集合中的指定索引處。如果未指定索引或指定的索引大於當前層數,則該層將自動附加到層集合中的層列表中,並且索引將被歸一化。

例子:

// addMany and push methods can be used
// to add layers to layers collection

// add an array of layers to layers collection using addMany
map.addMany([layer, layer2]);

// add layers to layers collection using push method
map.layers.push(layer, layer2);

相關用法


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