Skip to content

OverlaysDrawnMapViewEventArgs

Namespace: ThinkGeo.UI.Maui

Provides event data for overlay draw completion in MapView.

public class OverlaysDrawnMapViewEventArgs : System.EventArgs

Inheritance objectEventArgsOverlaysDrawnMapViewEventArgs

Properties

OverlayRefreshType

Gets or sets the refresh behavior that was applied after the overlays were drawn.

public OverlayRefreshType OverlayRefreshType { get; set; }

Property Value

OverlayRefreshType

WorldExtent

Gets or sets the world extent.

public RectangleShape WorldExtent { get; set; }

Property Value

RectangleShape

CenterPoint

Gets or sets the map center point when the overlays were rendered.

public PointShape CenterPoint { get; set; }

Property Value

PointShape

MapScale

Gets or sets the map scale that was in effect when the overlays were rendered.

public double MapScale { get; set; }

Property Value

double

CanvasWidth

Gets or sets the width in device-independent pixels of the canvas used for rendering.

public double CanvasWidth { get; set; }

Property Value

double

CanvasHeight

Gets or sets the height in device-independent pixels of the canvas used for rendering.

public double CanvasHeight { get; set; }

Property Value

double

RotationAngle

Gets or sets the map rotation angle, in degrees, applied during rendering.

public double RotationAngle { get; set; }

Property Value

double

Constructors

OverlaysDrawnMapViewEventArgs()

Initializes a new instance of the OverlaysDrawnMapViewEventArgs class.

public OverlaysDrawnMapViewEventArgs()

OverlaysDrawnMapViewEventArgs(RectangleShape)

Initializes a new instance of the OverlaysDrawnMapViewEventArgs class.

public OverlaysDrawnMapViewEventArgs(RectangleShape worldExtent)

Parameters

worldExtent RectangleShape
The world extent.