Interface ProfileHoverPointInformations

interface ProfileHoverPointInformations {
    coordinate?: Coordinate;
    distance?: number;
    elevations?: {};
    xUnits?: string;
    yUnits?: string;
}

Properties

coordinate?: Coordinate

Coordinate of the point.

distance?: number

distance of the point on the line. Can be in meters or kilometers.

elevations?: {}

Elevations of the point (example: {aster: 556.5, srtm: 560}).

xUnits?: string

Units of the x axis.

yUnits?: string

Units of the y axis.