CurrentScaleChangingMapViewEventArgs¶
Namespace: ThinkGeo.UI.Maui
Use to send data when map's current scale is changing.
public class CurrentScaleChangingMapViewEventArgs : System.EventArgs
Inheritance Object → EventArgs → CurrentScaleChangingMapViewEventArgs
Properties¶
OldScale¶
Gets or sets the old scale.
public double OldScale { get; set; }
Property Value¶
Double
The old scale.
NewScale¶
Gets or sets the new scale.
public double NewScale { get; set; }
Property Value¶
Double
The new scale.
Constructors¶
CurrentScaleChangingMapViewEventArgs(Double, Double)¶
Initializes a new instance of the CurrentScaleChangingMapViewEventArgs class.
public CurrentScaleChangingMapViewEventArgs(double oldScale, double newScale)
Parameters¶
oldScale
Double
The old scale.
newScale
Double
The new scale.