rotationType property

RotationType rotationType

Indicates whether the rotation calculated from the Renderer.rotationExpression is interpreted as arithmetic or geographic.

The options are:

RotationType.arithmetic if an error occurs.

Implementation

RotationType get rotationType {
  final coreValue = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_Renderer_getRotationType(_handle, errorHandler);
  });
  return RotationType._fromCoreValue(coreValue);
}
void rotationType=(RotationType value)

Implementation

set rotationType(RotationType value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_Renderer_setRotationType(
        _handle, value.coreValue, errorHandler);
  });
}