- 自从:ArcGIS 适用于 JavaScript 4.19 的 API
例子:
// 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; } }); });
基本信息
以下是所在类或对象的基本信息。
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
函数(或属性)的定义如下:
相关用法
- JavaScript ArcGIS FeatureTable.visible用法及代码示例
- JavaScript ArcGIS FeatureTable.visibleElements用法及代码示例
- JavaScript ArcGIS FeatureTable.on用法及代码示例
- JavaScript ArcGIS FeatureTable.multiSortEnabled用法及代码示例
- JavaScript ArcGIS FeatureTable.container用法及代码示例
- JavaScript ArcGIS FeatureTable.classes用法及代码示例
- JavaScript ArcGIS FeatureTable.when用法及代码示例
- JavaScript ArcGIS FeatureTable selection-change事件用法及代码示例
- JavaScript ArcGIS FeatureTemplates.on用法及代码示例
- JavaScript ArcGIS FeatureTemplates.GroupByFunction用法及代码示例
- JavaScript ArcGIS FeatureTemplates用法及代码示例
- JavaScript ArcGIS FeatureTemplates.layers用法及代码示例
- JavaScript ArcGIS FeatureTemplates.classes用法及代码示例
- JavaScript ArcGIS FeatureTemplates select事件用法及代码示例
- JavaScript ArcGIS FeatureTemplates.headingLevel用法及代码示例
- JavaScript ArcGIS FeatureTemplates.FilterFunction用法及代码示例
- JavaScript ArcGIS FeatureTemplate.prototype用法及代码示例
- JavaScript ArcGIS FeatureTemplates.container用法及代码示例
- JavaScript ArcGIS FeatureTemplates.filterFunction用法及代码示例
- JavaScript ArcGIS FeatureTemplates.visible用法及代码示例
- JavaScript ArcGIS FeatureTemplates.groupBy用法及代码示例
- JavaScript ArcGIS FeatureTemplates.visibleElements用法及代码示例
- JavaScript ArcGIS FeatureTemplates.when用法及代码示例
- JavaScript ArcGIS FeatureLayer.queryExtent用法及代码示例
- JavaScript ArcGIS FeatureLayer.when用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 FeatureTable.filterGeometry。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。