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 Object → EventArgs → CurrentExtentChangingMapViewEventArgs
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¶
NewScale¶
The Map Scale after the Extent Changing
public double NewScale { get; internal set; }
Property Value¶
OldRotationAngle¶
The Map Rotation Angle before the Extent Changing
public double OldRotationAngle { get; internal set; }
Property Value¶
NewRotationAngle¶
The Map Rotation Angle after the Extent Changing
public double NewRotationAngle { get; internal set; }
Property Value¶
IsMapScaleChanging¶
Whether the Map Scale is going to change
public bool IsMapScaleChanging { get; internal set; }
Property Value¶
IsMapRotationChanging¶
Whether the Map Rotation is going to change
public bool IsMapRotationChanging { get; internal set; }
Property Value¶
IsCenterPointChanging¶
Whether the Map Center Point is going to change
public bool IsCenterPointChanging { get; internal set; }
Property Value¶
IsCanceled¶
Whether to cancel changing the extent
public bool IsCanceled { get; set; }
Property Value¶
Constructors¶
CurrentExtentChangingMapViewEventArgs()¶
public CurrentExtentChangingMapViewEventArgs()