Skip to content

CurrentScaleChangingMapViewEventArgs

Namespace: ThinkGeo.UI.XamarinForms

Use to send data when map's current scale is changing.

public class CurrentScaleChangingMapViewEventArgs : System.EventArgs

Inheritance ObjectEventArgsCurrentScaleChangingMapViewEventArgs

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

CurrentScaleChangingMapViewEventArgs()

public CurrentScaleChangingMapViewEventArgs()

CurrentScaleChangingMapViewEventArgs(Double, Double)

Initializes a new instance of the CurrentScaleChangingMapViewEventArgs class.

public CurrentScaleChangingMapViewEventArgs(double previousScale, double currentScale)

Parameters

previousScale Double
The previous scale.

currentScale Double
The current scale.