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


JavaScript ArcGIS FeatureTable.filterGeometry用法及代碼示例


基本信息

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

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

ESM: import FeatureTable from "@arcgis/core/widgets/FeatureTable";

類: esri/widgets/FeatureTable

繼承: FeatureTable > Widget > Accessor

自從:用於 JavaScript 4.15 的 ArcGIS API

用法說明

FeatureTable.filterGeometry函數(或屬性)的定義如下:

filterGeometry Geometry autocast


自從:ArcGIS 適用於 JavaScript 4.19 的 API

設置此屬性以過濾表中顯示的特征。它接受 Geometry ,例如Extent ,並將其用作空間過濾器。修改此屬性時,FeatureTable 將完全刷新並重新查詢所有函數。

例子:

// Filter the table to only display the associated feature(s) that fall within the filterGeometry's geometry, (e.g. Extent)
featureLayer.watch("loaded", () => {
  reactiveUtils.when(() => view.updating === false, () => {
    // Get the new extent of view/map whenever map is updated
    if (view.extent) {
      // Filter and show only the visible features in the feature table
      featureTable.filterGeometry = view.extent;
    }
  });
});

相關用法


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