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


JavaScript ArcGIS Collection.find用法及代碼示例


基本信息

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

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

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

類: esri/core/Collection

繼承: Collection > Accessor

子類: SceneModifications

自從:用於 JavaScript 4.0 的 ArcGIS API

用法說明

Collection.find函數(或屬性)的定義如下:

find (callback) {*}


如果該項目通過callback 函數中定義的測試,則返回集合中的項目。每個項目都傳遞給callback 函數,如果項目通過測試,則返回true,否則返回false

參數:

類型說明
callback ItemTestCallback

將評估集合中每個項目的測試函數。如果項目通過測試,則返回true,如果失敗則返回false

返回:

類型 說明
* Collection 中滿足測試函數的第一項。

例子:

// If the id of a map layer is already known, get the layer that matches the id
let myLayer = map.layers.find(function(layer){
  return layer.id === "speciesLyr01";
});
// myLayer references the layer in map with ID "speciesLyr01"

相關用法


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