returnDirections property

bool returnDirections

Whether or not turn-by-turn directions for the closest facility routes are to be returned.

Implementation

bool get returnDirections {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_ClosestFacilityParameters_getReturnDirections(
      _handle,
      errorHandler,
    );
  });
}
void returnDirections=(bool value)

Implementation

set returnDirections(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_ClosestFacilityParameters_setReturnDirections(
      _handle,
      value,
      errorHandler,
    );
  });
}