returnPolylines property
Whether or not return service area polylines are to be returned.
Disabled by default. Can be returned in the ServiceAreaResult of a successful solve.
Implementation
bool get returnPolylines {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ServiceAreaParameters_getReturnPolylines(
_handle, errorHandler);
});
}
Implementation
set returnPolylines(bool value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_ServiceAreaParameters_setReturnPolylines(
_handle, value, errorHandler);
});
}