A 3D point, expessed as {x, y, elevation}.

interface ElevatedPoint {
    elevation: number;
    x: number;
    y: number;
}

Properties

Properties

elevation: number

The elevation in grid units

x: number

The x-coordinate in pixels

y: number

The y-coordinate in pixels