FMX.Maps.TMapCircleDescriptor

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TMapCircleDescriptor = record
    Center: TMapCoordinate;
    FillColor: TAlphaColor;
    Radius: Single;
    StrokeWidth: Single;
    StrokeColor: TAlphaColor;
    ZIndex: Single;
    class function Create(const Center: TMapCoordinate; const RadiusInMeters: Single): TMapCircleDescriptor; static;
  end;

C++

struct DECLSPEC_DRECORD TMapCircleDescriptor
{
public:
    TMapCoordinate Center;
    System::Uitypes::TAlphaColor FillColor;
    float Radius;
    float StrokeWidth;
    System::Uitypes::TAlphaColor StrokeColor;
    float ZIndex;
    static TMapCircleDescriptor __fastcall Create(const TMapCoordinate &Center, const float RadiusInMeters);
};

Properties

Type Visibility Source Unit Parent
record
struct
public
FMX.Maps.pas
FMX.Maps.hpp
FMX.Maps FMX.Maps

Description

Options that define a map circle.

The TMapCircleDescriptor record has the options to define a map circle.

See Also