spatialRelationship property
The spatial relationship that (along with the StatisticsQueryParameters.geometry) defines features to be included in the query.
The default spatial relationship is SpatialRelationship.intersects.
Implementation
SpatialRelationship get spatialRelationship {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_StatisticsQueryParameters_getSpatialRelationship(
_handle, errorHandler);
});
return SpatialRelationship._fromCoreValue(coreValue);
}
Implementation
set spatialRelationship(SpatialRelationship value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_StatisticsQueryParameters_setSpatialRelationship(
_handle, value.coreValue, errorHandler);
});
}