mapAngle property
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:
- GemMapController.registerOnMapAngleUpdate - Listen for map angle changes
Implementation
double get mapAngle {
final OperationResult resultString = objectMethod(
_pointerId,
'MapView',
'getHeadingInDegrees',
);
return resultString['result'];
}