mapAngle property

double get mapAngle

Map rotation angle in degrees.

Returns the current map heading as a value in the range 0.0–360.0 where 0 represents north-up orientation.

Returns

  • Current map angle in degrees (double).

See also:

Implementation

double get mapAngle {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'MapView',
    'getHeadingInDegrees',
  );

  return resultString['result'];
}