FMX.Maps.TMapPolylineDescriptor

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TMapPolylineDescriptor = record
    Points: TMapPolygonPolyvertex;
    Geodesic: Boolean;
    StrokeColor: TAlphaColor;
    StrokeWidth: Single;
    ZIndex: Single;
    class function Create(const Points: TArray<TMapCoordinate>): TMapPolylineDescriptor; static;
  end;

C++

struct DECLSPEC_DRECORD TMapPolylineDescriptor
{
public:
    TMapPolygonPolyvertex Points;
    bool Geodesic;
    System::Uitypes::TAlphaColor StrokeColor;
    float StrokeWidth;
    float ZIndex;
#ifndef _WIN64
    static TMapPolylineDescriptor __fastcall Create(const System::DynamicArray<TMapCoordinate> Points);
#else /* _WIN64 */
    static TMapPolylineDescriptor __fastcall Create(const System::TArray__1<TMapCoordinate> Points);
#endif /* _WIN64 */
};

Properties

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

Description

Record that defines a polyline.

A polyline is an open figure, to make a closed polyline, ensure that the start and end points match.

See Also