Skip to content

CurrentExtentChangingMapViewEventArgs

Namespace: ThinkGeo.UI.Maui

The event arg for MapView.CurrentExtentChanging event, the event is raised before the map extent changed

public class CurrentExtentChangingMapViewEventArgs : System.EventArgs

Inheritance ObjectEventArgsCurrentExtentChangingMapViewEventArgs

Properties

OldCenterPoint

The Map Center Point before the Extent Changing

public PointShape OldCenterPoint { get; internal set; }

Property Value

PointShape

NewCenterPoint

The Map Center Point after the Extent Changing

public PointShape NewCenterPoint { get; internal set; }

Property Value

PointShape

OldScale

The Map Scale before the Extent Changing

public double OldScale { get; internal set; }

Property Value

Double

NewScale

The Map Scale after the Extent Changing

public double NewScale { get; internal set; }

Property Value

Double

OldRotationAngle

The Map Rotation Angle before the Extent Changing

public double OldRotationAngle { get; internal set; }

Property Value

Double

NewRotationAngle

The Map Rotation Angle after the Extent Changing

public double NewRotationAngle { get; internal set; }

Property Value

Double

IsMapScaleChanging

Whether the Map Scale is going to change

public bool IsMapScaleChanging { get; internal set; }

Property Value

Boolean

IsMapRotationChanging

Whether the Map Rotation is going to change

public bool IsMapRotationChanging { get; internal set; }

Property Value

Boolean

IsCenterPointChanging

Whether the Map Center Point is going to change

public bool IsCenterPointChanging { get; internal set; }

Property Value

Boolean

IsCanceled

Whether to cancel changing the extent

public bool IsCanceled { get; set; }

Property Value

Boolean

Constructors

CurrentExtentChangingMapViewEventArgs()

public CurrentExtentChangingMapViewEventArgs()