Skip to content

IGpsMarkerAdapter

Namespace: ThinkGeo.UI.XamarinForms.Adapters

public interface IGpsMarkerAdapter : IMapElementAdapter

Implements IMapElementAdapter

Properties

XOffset

Gets or sets the x offset.

public abstract int XOffset { get; set; }

Property Value

Int32
The x offset.

YOffset

Gets or sets the y offset.

public abstract int YOffset { get; set; }

Property Value

Int32
The y offset.

Position

World Position of marker. It's a wrapper of the PositionProperty.

public abstract PointShape Position { get; set; }

Property Value

PointShape

ImageSource

Gets or sets the image source.

public abstract string ImageSource { get; set; }

Property Value

String
The image source.

HaloRadiusInMeter

public abstract float HaloRadiusInMeter { get; set; }

Property Value

Single

Events

Click

Occurs when [click].

public abstract event EventHandler<EventArgs> Click;