type TCircle = class(TObject)
Circle class.
![]() |
constructor Create(); |
![]() |
destructor Destroy(); override; |
![]() |
property Name: String read FName write FName; |
![]() |
property Center: TGPSPosition read fCenter write fCenter; |
![]() |
property Radius: Double read fRadius write fRadius; |
![]() |
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 Visible: Boolean read fVisible write fVisible default true; |
![]() |
constructor Create(); |
|
Constructor. | |
![]() |
destructor Destroy(); override; |
|
Destructor. | |
![]() |
property Name: String read FName write FName; |
|
Circle name. | |
![]() |
property Center: TGPSPosition read fCenter write fCenter; |
|
The center of the circle. | |
![]() |
property Radius: Double read fRadius write fRadius; |
|
The radius of the circle in meters for OSM and Google maps. In case of WGS84 map, Radius is in pixels. | |
![]() |
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; |
|
Fill opacity of the shape. | |
![]() |
property Visible: Boolean read fVisible write fVisible default true; |
|
Indicates that the circle is visible on the map. | |