FMX.Maps.TMapCoordinate

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TMapCoordinate = record
    Latitude: Double;
    Longitude: Double;
    class function Create(const Latitude: Double; const Longitude: Double): TMapCoordinate; overload; static; inline;
    class function Create(const Point: TPointF): TMapCoordinate; overload; static; inline;
    class function Zero: TMapCoordinate; static; inline;
    function ToString: string;
  end;

C++

struct DECLSPEC_DRECORD TMapCoordinate
{
public:
    double Latitude;
    double Longitude;
    static TMapCoordinate __fastcall Create(const double Latitude, const double Longitude)/* overload */;
#ifndef _WIN64
    static TMapCoordinate __fastcall Create(const System::Types::TPointF &Point)/* overload */;
#else /* _WIN64 */
    static TMapCoordinate __fastcall Create(const System::Types::TPointF Point)/* overload */;
#endif /* _WIN64 */
    static TMapCoordinate __fastcall Zero();
    System::UnicodeString __fastcall ToString(void);
};

Properties

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

Description

Record used to store information about a world map coordinate.

The TMapCoordinate record stores information about a world map coordinate with the Latitude and Longitude.

See Also