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


JavaScript ArcGIS PointCloudLayer.fieldsIndex用法及代碼示例


基本信息

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

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

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

類: esri/layers/PointCloudLayer

繼承: PointCloudLayer > Layer > Accessor

自從:用於 JavaScript 4.2 的 ArcGIS API

用法說明

PointCloudLayer.fieldsIndex函數(或屬性)的定義如下:

fieldsIndex FieldsIndex readonly


自從:ArcGIS 適用於 JavaScript 4.13 的 API

一個方便的屬性,可用於按名稱對字段進行不區分大小寫的查找。它還可以提供層中date fields 的列表。

例子:

// lookup a field by name. name is case-insensitive
const field = layer.fieldsIndex.get("SoMeFiEld");

if (field) {
  console.log(field.name); // SomeField
}

相關用法


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