CurrentExtentChangedMapViewEventArgs¶
Namespace: ThinkGeo.UI.Maui
The event arg for MapView.CurrentExtentChanged event, the event is raised after the map extent changed
public class CurrentExtentChangedMapViewEventArgs : System.EventArgs
Inheritance Object → EventArgs → CurrentExtentChangedMapViewEventArgs
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¶
IsMapScaleChanged¶
Whether the Map Scale is Changed
public bool IsMapScaleChanged { get; internal set; }
Property Value¶
IsMapRotationChanged¶
Whether the Map Rotation is Changed
public bool IsMapRotationChanged { get; internal set; }
Property Value¶
IsCenterPointChanged¶
Whether the Map Center Point is Changed
public bool IsCenterPointChanged { get; internal set; }
Property Value¶
Constructors¶
CurrentExtentChangedMapViewEventArgs()¶
public CurrentExtentChangedMapViewEventArgs()