-
featureReduction
FeatureReductionCluster
|
FeatureReductionSelection
autocast
配置减少视图中点要素数量的方法。默认情况下,此属性为
null
,表示图层视图应绘制每个要素。有两种类型的特征缩减:
selection
和cluster
。- Selection 仅适用于 SceneView 中的点,并涉及细化重叠特征,因此屏幕上没有任何特征相交。
- FeatureReductionCluster在空间上对点进行分组MapView进入集群.每个集群的大小与集群内的特征数量成正比。
例子:
// clusters points based on their spatial proximity to other points layer.featureReduction = { type: "cluster", clusterRadius: 100 };
// thins features in the view layer.featureReduction = { type: "selection" };
基本信息
以下是所在类或对象的基本信息。
AMD:
require(["esri/layers/WFSLayer"], (WFSLayer) => { /* code goes here */ });
ESM:
import WFSLayer from "@arcgis/core/layers/WFSLayer";
类:
esri/layers/WFSLayer
继承: WFSLayer > Layer > Accessor
自从:用于 JavaScript 4.20 的 ArcGIS API
用法说明
WFSLayer.featureReduction
函数(或属性)的定义如下:
相关用法
- JavaScript ArcGIS WFSLayer.featureEffect用法及代码示例
- JavaScript ArcGIS WFSLayer.fromWFSLayerInfo用法及代码示例
- JavaScript ArcGIS WFSLayer.fields用法及代码示例
- JavaScript ArcGIS WFSLayer.fullExtent用法及代码示例
- JavaScript ArcGIS WFSLayer.fieldsIndex用法及代码示例
- JavaScript ArcGIS WFSLayer.orderBy用法及代码示例
- JavaScript ArcGIS WFSLayer.createQuery用法及代码示例
- JavaScript ArcGIS WFSLayer.opacity用法及代码示例
- JavaScript ArcGIS WFSLayer.minScale用法及代码示例
- JavaScript ArcGIS WFSLayer.when用法及代码示例
- JavaScript ArcGIS WFSLayer.refreshInterval用法及代码示例
- JavaScript ArcGIS WFSLayer.on用法及代码示例
- JavaScript ArcGIS WFSLayer.capabilities用法及代码示例
- JavaScript ArcGIS WFSLayer.url用法及代码示例
- JavaScript ArcGIS WFSLayer.visible用法及代码示例
- JavaScript ArcGIS WFSLayer.name用法及代码示例
- JavaScript ArcGIS WFSLayer.outFields用法及代码示例
- JavaScript ArcGIS WFSLayer.createPopupTemplate用法及代码示例
- JavaScript ArcGIS WFSLayer.portalItem用法及代码示例
- JavaScript ArcGIS WFSLayer.customParameters用法及代码示例
- JavaScript ArcGIS WFSLayer.definitionExpression用法及代码示例
- JavaScript ArcGIS WFSLayer.maxScale用法及代码示例
- JavaScript ArcGIS WFSLayer.namespaceUri用法及代码示例
- JavaScript ArcGIS WFSLayer.effect用法及代码示例
- JavaScript ArcGIS WFSLayer refresh事件用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 WFSLayer.featureReduction。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。