FMX.Maps.TMapCoordinate
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 */;
static TMapCoordinate __fastcall Create(const System::Types::TPointF &Point)/* overload */;
static TMapCoordinate __fastcall Zero();
System::UnicodeString __fastcall ToString();
};
Eigenschaften
| Typ | Sichtbarkeit | Quelle | Unit | Übergeordnet |
|---|---|---|---|---|
record struct |
public | FMX.Maps.pas FMX.Maps.hpp |
FMX.Maps | FMX.Maps |
Beschreibung
Record zum Speichern von Informationen über eine Koordinate auf einer Weltkarte.
Der Record TMapCoordinate speichert Informationen über eine Koordinate auf einer Weltkarte mit dem Breitengrad (Latitude) und dem Längengrad (Longitude).