Contains information about an elevation sample taken on a map.

interface ElevationSample {
    elevation: number;
    resolution: number;
    source: ElevationProvider;
}

Properties

elevation: number

The elevation at the sample location.

resolution: number

The resolution of the sample.

The provider on which the sample was done.