type TPath = class(TObject)
Path class. Collection of GPS positions (polyline between positions).
![]() |
constructor Create(); |
![]() |
destructor Destroy; override; |
![]() |
procedure Add(const Item: TGPSPosition); |
![]() |
procedure Insert(index: Integer; const Item: TGPSPosition); |
![]() |
procedure Delete(index: Integer); |
![]() |
procedure Clear; |
![]() |
property Count: Integer read GetCount; |
![]() |
property Items[index:Integer]: TGPSPosition read GetItem write SetItem; |
![]() |
property Name: String read fName write fName; |
![]() |
property StrokeColor: TColor read fStrokeColor write fStrokeColor; |
![]() |
property StrokeOpacity: Double read fStrokeOpacity write fStrokeOpacity; |
![]() |
property StrokeWeight: Integer read fStrokeWeight write fStrokeWeight; |
![]() |
property FillColor: TColor read fFillColor write fFillColor; |
![]() |
property FillOpacity: Double read fFillOpacity write fFillOpacity; |
![]() |
property GeodesicStatus: Boolean read fGeodesicStatus write fGeodesicStatus; |
![]() |
property PathType: TPathType read fPathType write fPathType; |
![]() |
property Visible: Boolean read fVisible write fVisible default true; |
![]() |
constructor Create(); |
|
Constructor. | |
![]() |
destructor Destroy; override; |
|
Destructor. | |
![]() |
procedure Add(const Item: TGPSPosition); |
|
Add GPS position to collection.
Parameters
| |
![]() |
procedure Insert(index: Integer; const Item: TGPSPosition); |
|
Insert GPS position into collection.
Parameters
| |
![]() |
procedure Delete(index: Integer); |
|
Delete position from collection.
Parameters
| |
![]() |
procedure Clear; |
|
Remove all positions from collection. | |
![]() |
property Count: Integer read GetCount; |
|
GPSPosition count. | |
![]() |
property Items[index:Integer]: TGPSPosition read GetItem write SetItem; |
|
GPSPosition items. | |
![]() |
property Name: String read fName write fName; |
|
Path name. | |
![]() |
property StrokeColor: TColor read fStrokeColor write fStrokeColor; |
|
Color of the stroke. | |
![]() |
property StrokeOpacity: Double read fStrokeOpacity write fStrokeOpacity; |
|
Opacity of the stroke. | |
![]() |
property StrokeWeight: Integer read fStrokeWeight write fStrokeWeight; |
|
Weight of the stroke. | |
![]() |
property FillColor: TColor read fFillColor write fFillColor; |
|
Fill color of the shape. | |
![]() |
property FillOpacity: Double read fFillOpacity write fFillOpacity; |
|
Opacity of the shape. | |
![]() |
property PathType: TPathType read fPathType write fPathType; |
|
Path type (polygon or polyline). | |
![]() |
property Visible: Boolean read fVisible write fVisible default true; |
|
Indicates that the path is visible on the map. | |