Skip to content

MarkerDraggedSimpleMarkerOverlayEventArgs

Namespace: ThinkGeo.Core

This class represents the event arguments for the MarkerDragged event for SimpleMarkerOverlay.

public class MarkerDraggedSimpleMarkerOverlayEventArgs : System.EventArgs

Inheritance ObjectEventArgsMarkerDraggedSimpleMarkerOverlayEventArgs

Properties

DraggingMarker

Gets or sets the marker which is dragged.

public Marker DraggingMarker { get; set; }

Property Value

Marker

WorldCoordinate

This proerpty gets and sets current mouse position in world coordinate.

public PointShape WorldCoordinate { get; set; }

Property Value

PointShape

ScreenCoordinate

Gets or sets current mouse position in screen coordinate.

public ScreenPointF ScreenCoordinate { get; set; }

Property Value

ScreenPointF

Constructors

MarkerDraggedSimpleMarkerOverlayEventArgs()

This is the constructor of MarkerDraggedSimpleMarkerOverlayEventArgs class.

public MarkerDraggedSimpleMarkerOverlayEventArgs()

MarkerDraggedSimpleMarkerOverlayEventArgs(Marker, PointShape, ScreenPointF)

Constructor of the MarkerDraggedSimpleMarkerOverlayEventArgs class.

public MarkerDraggedSimpleMarkerOverlayEventArgs(Marker draggingMarker, PointShape worldCoordinate, ScreenPointF screenCoordinate)

Parameters

draggingMarker Marker
This parameter indicates the marker which is dragged.

worldCoordinate PointShape
This parameter indicates current mouse position in world coordinate.

screenCoordinate ScreenPointF
This parameter indicates current mouse position in screen coordinate.