maxViewAngle property
Get the maximum viewing angle.
Maximum view angle is when the camera is looking directly toward the horizon.
Must be between 0 and 90, where 0 represents a direct top-down view.
Returns
- The maximum view angle
Throws
- An exception if it fails.
Implementation
double get maxViewAngle {
final OperationResult resultString = objectMethod(
_pointerId,
'MapViewPreferences',
'getMaxViewAngle',
);
return resultString['result'];
}