MapRotationChangedMapViewEventArgs¶
Namespace: ThinkGeo.UI.Maui
Provides data for the MapView.MapRotationChanged event.
public class MapRotationChangedMapViewEventArgs : System.EventArgs
Inheritance Object → EventArgs → MapRotationChangedMapViewEventArgs
Properties¶
PreviousRotation¶
Gets the rotation angle before the change, in degrees.
public double PreviousRotation { get; }
Property Value¶
CurrentRotation¶
Gets or sets the rotation angle after the change, in degrees.
public double CurrentRotation { get; set; }
Property Value¶
Constructors¶
MapRotationChangedMapViewEventArgs(Double, Double)¶
Provides data for the MapView.MapRotationChanged event.
public MapRotationChangedMapViewEventArgs(double previousRotation, double currentRotation)
Parameters¶
previousRotation Double
The rotation angle before the change, in degrees.
currentRotation Double
The rotation angle after the change, in degrees.
MapRotationChangedMapViewEventArgs()¶
Initializes a new instance of the MapRotationChangedMapViewEventArgs class with default values.
public MapRotationChangedMapViewEventArgs()