geometryAtCutoff property
Geometry at cutoff.
Specifies the behavior of service area output for a single facility when multiple cutoff values are specified. This parameter does not apply to line output. Default value ServiceAreaPolygonCutoffGeometry.rings will be returned on error.
Implementation
ServiceAreaPolygonCutoffGeometry get geometryAtCutoff {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ServiceAreaParameters_getGeometryAtCutoff(
_handle, errorHandler);
});
return ServiceAreaPolygonCutoffGeometry._fromCoreValue(coreValue);
}
Implementation
set geometryAtCutoff(ServiceAreaPolygonCutoffGeometry value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_ServiceAreaParameters_setGeometryAtCutoff(
_handle, value.coreValue, errorHandler);
});
}