FMX.Maps.TMapPolylineDescriptor

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TMapPolylineDescriptor = record

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