WRLDCoordinateWithAltitude Struct Reference

A structure representing a 3D geographical coordinate using the WGS84 coordinate reference frame.

struct WRLDCoordinateWithAltitude {
    CLLocationCoordinate2D coordinate;
    CLLocationDistance altitude;
};

Fields

CLLocationCoordinate2D coordinate

The WGS84 coordinate of the point.

CLLocationDistance altitude

The altitude of the point, in meters above mean sea level.

Methods

WRLDCoordinateWithAltitudeMake

WRLDCoordinateWithAltitude WRLDCoordinateWithAltitudeMake(CLLocationCoordinate2D coordinate, CLLocationDistance altitude);
Create a WRLDCoordinateWithAltitude instance.
Argument Description
coordinate The latitude - longitude coordinate of the point.
altitude The altitude of the point in meters above mean sea level.
v0.0.1600