MarkerDraggingSimpleMarkerOverlayEventArgs¶
Namespace: ThinkGeo.Core
This class represents the MarkerDragging event argument for SimpleMarkerOverlay.
public class MarkerDraggingSimpleMarkerOverlayEventArgs : System.EventArgs
Inheritance Object → EventArgs → MarkerDraggingSimpleMarkerOverlayEventArgs
Properties¶
DraggingMarker¶
Gets or sets the marker which is being dragged.
public Marker DraggingMarker { get; set; }
Property Value¶
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¶
MarkerDraggingSimpleMarkerOverlayEventArgs()¶
Constructor of MarkerDraggingSimpleMarkerOverlayEventArgs class.
public MarkerDraggingSimpleMarkerOverlayEventArgs()
MarkerDraggingSimpleMarkerOverlayEventArgs(Marker, PointShape, ScreenPointF)¶
Constructor of MarkerDraggingSimpleMarkerOverlayEventArgs class.
public MarkerDraggingSimpleMarkerOverlayEventArgs(Marker draggingMarker, PointShape worldCoordinate, ScreenPointF screenCoordinate)
Parameters¶
draggingMarker
Marker
This parameter indicates the marker which is being dragged.
worldCoordinate
PointShape
This parameter indicates current mouse position in world coordinate.
screenCoordinate
ScreenPointF
This parameter indicates current mouse position in screen coordinate.