FMX.MediaLibrary.TLocationInfo

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TLocationInfo = record
    Latitude: Double;
    Longitude: Double;
  end;

C++

struct DECLSPEC_DRECORD TLocationInfo
{
public:
    double Latitude;
    double Longitude;
};

Properties

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

Description

Record that contains the geographical coordinates of the place where a photo is taken.

Value Meaning

Latitude

Keeps the latitude coordinate.

Longitude

Keeps the longitude coordinate

See Also