Skip to content

OverlaysDrawnMapViewEventArgs

Namespace: ThinkGeo.Core

This is the event arguments for the OverlaysDrawn event on the MapEngine class. It is raised after the overlays are drawn.

public class OverlaysDrawnMapViewEventArgs : System.EventArgs

Inheritance ObjectEventArgsOverlaysDrawnMapViewEventArgs

Remarks:

This is the event arguments for the OverlaysDrawn event on the MapEngine class. It is raised after the overlays are drawn. This event allows you draw something with the canvas after the Layer draws.

Properties

WorldExtent

Gets or sets the world extent that has been drawn.

public RectangleShape WorldExtent { get; set; }

Property Value

RectangleShape
This property gets the world extent that has been drawn.

Remarks:

None

Overlays

This property gets the overlays you have drawn.

public IEnumerable<Overlay> Overlays { get; }

Property Value

IEnumerable<Overlay>
This property gets the overlays you have drawn.

Remarks:

None

Constructors

OverlaysDrawnMapViewEventArgs()

Constructor of OverlaysDrawnWpfMapEventArgs class.

public OverlaysDrawnMapViewEventArgs()

Remarks:

This is the default constructor. If you use this constructor then you need to set the required properties manually.

OverlaysDrawnMapViewEventArgs(IEnumerable<Overlay>, RectangleShape)

Constructor of OverlaysDrawnWpfMapEventArgs class.

public OverlaysDrawnMapViewEventArgs(IEnumerable<Overlay> overlays, RectangleShape worldExtent)

Parameters

overlays IEnumerable<Overlay>
This parameter is the overlays that have been drawn.

worldExtent RectangleShape
This parameter is the wold extent that has been drawn.

Remarks:

None