CurrentScaleChangingMapViewEventArgs¶
Namespace: ThinkGeo.UI.Maui
Provides data for the MapView.CurrentScaleChanging event.
public class CurrentScaleChangingMapViewEventArgs : System.EventArgs
Inheritance object → EventArgs → CurrentScaleChangingMapViewEventArgs
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¶
CurrentScaleChangingMapViewEventArgs(double, double)¶
Initializes a new instance of the CurrentScaleChangingMapViewEventArgs class.
public CurrentScaleChangingMapViewEventArgs(double oldScale, double newScale)
Parameters¶
oldScale double
The previous map scale.
newScale double
The new map scale.