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


JavaScript ArcGIS MapImageLayer.allSublayers用法及代碼示例


基本信息

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

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

ESM: import MapImageLayer from "@arcgis/core/layers/MapImageLayer";

類: esri/layers/MapImageLayer

繼承: MapImageLayer > Layer > Accessor

自從:用於 JavaScript 4.0 的 ArcGIS API

用法說明

MapImageLayer.allSublayers函數(或屬性)的定義如下:

allSublayers Collection<Sublayer> readonly


MapImageLayer中的所有子層(包括其子層的子層)的平坦Collection。所有子圖層均按照它們在視圖中繪製的順序(從下到上)進行引用。

已知限製

  • 不支持標簽。
  • 不支持帶有街機表達式的彈出窗口。
  • 對於 TimeSlider,必須從日期中刪除本地時區偏移量。請參閱下麵的代碼片段。
  • 對於時間查詢和過濾器,以 UTC 創建日期。請參閱下麵的代碼片段。

例子:

// finds the census tracts sublayer from a parent sublayer of the
// MapImageLayer containing various census sublayers
let tractsId = 5;
let tracksSublayer = layer.allSublayers.find(function(sublayer){
  return sublayer.id === tracksId;
});

相關用法


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