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


JavaScript ArcGIS SceneModifications.some用法及代碼示例


基本信息

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

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

ESM: import SceneModifications from "@arcgis/core/layers/support/SceneModifications";

類: esri/layers/support/SceneModifications

繼承: SceneModifications > Collection > Accessor

自從:用於 JavaScript 4.16 的 ArcGIS API

用法說明

SceneModifications.some函數(或屬性)的定義如下:

some (callback) {Boolean} inherited


確定集合中的項目是否通過 callback 定義的測試。集合中的每個項目都被傳遞到回調中,直到返回一個值 true

參數:

類型說明
callback ItemCallback

為每個 Collection 項定義測試的函數。

返回:

類型 說明
Boolean 如果集合中的任何項目通過了在 callback 中定義的測試,則返回 true。如果所有項目都未通過測試,則返回 false

例子:

// If at least one of the point graphics has a geometry whose
// elevation is above 1000m, then passes will have a value of true.
// Otherwise, it will be false.
let passes = graphicsLayer.graphics.some(function(item, i){
  return item.geometry.z > 1000;
});

相關用法


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