Skip to content

MapRotationChangingMapViewEventArgs

Namespace: ThinkGeo.UI.Maui

Provides data for the MapView.MapRotationChanging event.

public class MapRotationChangingMapViewEventArgs : System.EventArgs

Inheritance objectEventArgsMapRotationChangingMapViewEventArgs

Properties

PreviousRotation

Gets or sets the rotation angle before the change, in degrees.

public double PreviousRotation { get; set; }

Property Value

double

CurrentRotation

Gets or sets the rotation angle that will be applied, in degrees.

public double CurrentRotation { get; set; }

Property Value

double

Constructors

MapRotationChangingMapViewEventArgs(double, double)

Provides data for the MapView.MapRotationChanging event.

public MapRotationChangingMapViewEventArgs(double previousRotation, double currentRotation)

Parameters

previousRotation double
The rotation angle before the change, in degrees.

currentRotation double
The rotation angle that will be applied, in degrees.

MapRotationChangingMapViewEventArgs()

Initializes a new instance of the MapRotationChangingMapViewEventArgs class with default values.

public MapRotationChangingMapViewEventArgs()