-
flatten
(callback)
{Collection}
展平包含至少一個子集合的分層集合。集合中的每個項目都被傳遞到
callback
函數中,該函數應檢查開發人員指定的子集合。返回所有項目(父項和子項)的平麵集合。這對於用戶想要搜索Map中所有圖層的場景很有用,包括 GroupLayer's layers 和 MapImageLayer's sublayers 。回調應返回項目的sub-collection。如果層次結構中存在多個級別的集合,則此方法對所有sub-collections 遞歸執行。
參數:
類型 說明 callback ItemCallback將評估集合中每個項目的函數。
返回:
類型 說明 Collection 返回原始集合中所有項目及其子項的平麵集合。 例子:
// create a MapImageLayer with several sublayers and add to a map // containing another GraphicsLayer let layer = new MapImageLayer({ sublayers: [ ... ] }); let map = new Map({ layers: [ layer, new GraphicsLayer() ] }); // A flat collection of all layers and sublayers // (if layer is a MapImageLayer) in the map. // This collection may be searched or used for other purposes let allLayersAndSublayers = map.layers.flatten(function(item){ return item.layers || item.sublayers; });
基本信息
以下是所在類或對象的基本信息。
AMD:
require(["esri/core/Collection"], (Collection) => { /* code goes here */ });
ESM:
import Collection from "@arcgis/core/core/Collection";
類:
esri/core/Collection
繼承: Collection > Accessor
自從:用於 JavaScript 4.0 的 ArcGIS API
用法說明
Collection.flatten
函數(或屬性)的定義如下:
相關用法
- JavaScript ArcGIS Collection.find用法及代碼示例
- JavaScript ArcGIS Collection.forEach用法及代碼示例
- JavaScript ArcGIS Collection.findIndex用法及代碼示例
- JavaScript ArcGIS Collection.filter用法及代碼示例
- JavaScript ArcGIS Collection.addMany用法及代碼示例
- JavaScript ArcGIS Collection.add用法及代碼示例
- JavaScript ArcGIS Collection.lastIndexOf用法及代碼示例
- JavaScript ArcGIS Collection.ofType用法及代碼示例
- JavaScript ArcGIS Collection.pop用法及代碼示例
- JavaScript ArcGIS Collection.reverse用法及代碼示例
- JavaScript ArcGIS Collection.removeMany用法及代碼示例
- JavaScript ArcGIS Collection.toArray用法及代碼示例
- JavaScript ArcGIS Collection.some用法及代碼示例
- JavaScript ArcGIS Collection.remove用法及代碼示例
- JavaScript ArcGIS Collection.concat用法及代碼示例
- JavaScript ArcGIS Collection.unshift用法及代碼示例
- JavaScript ArcGIS Collection.splice用法及代碼示例
- JavaScript ArcGIS Collection.sort用法及代碼示例
- JavaScript ArcGIS Collection.every用法及代碼示例
- JavaScript ArcGIS Collection.push用法及代碼示例
- JavaScript ArcGIS Collection.indexOf用法及代碼示例
- JavaScript ArcGIS Collection.slice用法及代碼示例
- JavaScript ArcGIS Collection.includes用法及代碼示例
- JavaScript ArcGIS Collection.shift用法及代碼示例
- JavaScript ArcGIS Collection.join用法及代碼示例
注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 Collection.flatten。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。