FMX.Maps.TMapCoordinate

提供: RAD Studio API Documentation
移動先: 案内検索

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();
};

プロパティ

種類 可視性 ソース ユニット
record
struct
public
FMX.Maps.pas
FMX.Maps.hpp
FMX.Maps FMX.Maps


説明

ワールド マップ座標に関する情報の格納に使用されるレコードです。

TMapCoordinate レコードには、LatitudeLongitude で構成されるワールド マップ座標に関する情報が格納されます。

関連項目