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


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


基本信息

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

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.filters函數(或屬性)的定義如下:


自從:ArcGIS 適用於 JavaScript 4.10 的 API

用於過濾點的pointCloudFilters 數組。隻有滿足所有過濾器的點才會顯示在視圖中。可以設置兩種類型的過濾器:PointCloudValueFilter 根據分類值過濾點,PointCloudReturnFilter 根據返回值過濾點。

例子:

// filter out points that don't belong to ground or building
const pcLayer = new PointCloudLayer({
  ...,
  filters: [{
    type: "value",
    field: "CLASS_CODE",
    mode: "include",
    // values include ground(2) and building(6)
    values: [2, 6]
  }]
});

相關用法


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