GlobeView.CameraAngle Property
Gets or sets the angle of the view.
Syntax
public System.Double CameraAngle { get; set; }
Property Value
Default: 60.0
An angle in degrees that the camera should cover sidewise.
Remarks
The cameraAngle is the field of view. That is the angle that the drawable should cover sidewise. The angle should be adjusted to the angle formed by the triangle drawable left edge, viewer, drawable right edge.
Example
// Decrease CameraAngle by 10 degrees
public static void DecreaseCameraAngleBy10Degrees(GlobeView globeView)
{
// Subtract 10 degrees from the CameraAngle
globeView.CameraAngle = globeView.CameraAngle - 10.0;
}
Platforms
Windows, Linux, Android