Skip to content

CurrentScaleChangedMapViewEventArgs

Namespace: ThinkGeo.UI.Maui

Provides data for the MapView.CurrentScaleChanged event.

public class CurrentScaleChangedMapViewEventArgs : System.EventArgs

Inheritance ObjectEventArgsCurrentScaleChangedMapViewEventArgs

Properties

OldScale

Gets or sets the scale prior to the change.

public double OldScale { get; set; }

Property Value

Double

NewScale

Gets or sets the scale after the change.

public double NewScale { get; set; }

Property Value

Double

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.