featureReduction property
Defines properties for dynamically aggregating and summarizing groups of graphics as the map scale and visible extent change.
FeatureReduction is only supported for point graphics in dynamic rendering mode (GraphicsRenderingMode.dynamic) in 2D. FeatureReduction is ignored and will result in the original point graphics being rendered for a GraphicsOverlay that:
- Uses static rendering mode.
- Is added to a
SceneView
. - Uses an unsupported renderer for the
AggregationFeatureReduction.renderer
. SeeAggregationFeatureReduction.renderer
for more info.
If this property is explicitly set to null, FeatureReduction is removed from the GraphicsOverlay.
Implementation
FeatureReduction? get featureReduction => _featureReduction.value;
Implementation
set featureReduction(FeatureReduction? value) =>
_featureReduction.value = value;