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