CurrentScaleChangedMapViewEventArgs¶
Namespace: ThinkGeo.UI.Maui
Provides data for the MapView.CurrentScaleChanged event.
public class CurrentScaleChangedMapViewEventArgs : System.EventArgs
Inheritance Object → EventArgs → CurrentScaleChangedMapViewEventArgs
Properties¶
OldScale¶
Gets or sets the scale prior to the change.
public double OldScale { get; set; }
Property Value¶
NewScale¶
Gets or sets the scale after the change.
public double NewScale { get; set; }
Property Value¶
Constructors¶
CurrentScaleChangedMapViewEventArgs(Double, Double)¶
Initializes a new instance of the CurrentScaleChangedMapViewEventArgs class.
public CurrentScaleChangedMapViewEventArgs(double oldScale, double newScale)
Parameters¶
oldScale Double
The previous map scale.
newScale Double
The new map scale.