mapRotationMode property
Get map rotation mode in follow position
Returns
- The map rotation mode
- The fixed rotation angle
Throws
- An exception if it fails
Implementation
(FollowPositionMapRotationMode, double) get mapRotationMode {
final OperationResult resultString = objectMethod(
_pointerId,
'FollowPositionPreferences',
'getMapRotationMode',
);
return (
FollowPositionMapRotationMode
.values[((resultString['result']['first']) as double).toInt()],
resultString['result']['second'],
);
}