CurrentExtentChangingMapViewEventArgs¶
Namespace: ThinkGeo.UI.XamarinForms
Use to send data when map's extent is changing.
public class CurrentExtentChangingMapViewEventArgs : System.EventArgs
Inheritance Object → EventArgs → CurrentExtentChangingMapViewEventArgs
Properties¶
PreviousExtent¶
Gets or sets the previous extent.
public RectangleShape PreviousExtent { get; set; }
Property Value¶
RectangleShape
The previous extent.
CurrentExent¶
Gets or sets the current extent.
public RectangleShape CurrentExent { get; set; }
Property Value¶
RectangleShape
The current extent.
Constructors¶
CurrentExtentChangingMapViewEventArgs()¶
Initializes a new instance of the CurrentExtentChangingMapViewEventArgs class.
public CurrentExtentChangingMapViewEventArgs()
CurrentExtentChangingMapViewEventArgs(RectangleShape, RectangleShape)¶
Initializes a new instance of the CurrentExtentChangingMapViewEventArgs class.
public CurrentExtentChangingMapViewEventArgs(RectangleShape previousExtent, RectangleShape currentExtent)
Parameters¶
previousExtent
RectangleShape
The previous extent.
currentExtent
RectangleShape
The current extent.