Represents a geographical point with altitude, latitude, longitude, and source information.

interface Point {
    alt: number;
    lat: number;
    lon: number;
    source: Types.Point | LLA;
}

Hierarchy (View Summary)

Implemented by

Properties

Properties

alt: number

The altitude of the point in meters.

lat: number

The latitude of the point in decimal degrees.

lon: number

The longitude of the point in decimal degrees.

source: Types.Point | LLA

The source information of the point, which can be either an object containing altitude, latitude, and longitude, or another Point instance.