API: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

Embarcadero Technologies does not currently have any additional information. Please help us document this topic by using the Discussion page!