CurrentScaleChangedMapViewEventArgs¶
Namespace: ThinkGeo.UI.XamarinForms
Use to send data when map's current scale is changed.
public class CurrentScaleChangedMapViewEventArgs : System.EventArgs
Inheritance Object → EventArgs → CurrentScaleChangedMapViewEventArgs
Properties¶
PreviousScale¶
Gets or sets the previous scale.
public double PreviousScale { get; set; }
Property Value¶
Double
The previous scale.
CurrentScale¶
Gets or sets the current scale.
public double CurrentScale { get; set; }
Property Value¶
Double
The current scale.
Constructors¶
CurrentScaleChangedMapViewEventArgs()¶
public CurrentScaleChangedMapViewEventArgs()
CurrentScaleChangedMapViewEventArgs(Double, Double)¶
Initializes a new instance of the CurrentScaleChangedMapViewEventArgs class.
public CurrentScaleChangedMapViewEventArgs(double previousScale, double currentScale)
Parameters¶
previousScale
Double
The previous scale.
currentScale
Double
The current scale.