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


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


基本信息

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

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

add (layer, index)


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

參數:

類型說明
layer Layer|Promise

圖層或解析為圖層以添加到圖層集合中的承諾。

index Number
可選的

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

例子:

// add() and push methods can be used
// to add a layer to layers collection

// add a layer to layers collection using add
map.add(layer);

// add a layer at the end of layers collection
map.layers.push(layer);

相關用法


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