Contains information about an elevation sample taken on a map.

interface ElevationSample {
    elevation: number;
    map: entities.Map<EntityUserData>;
    resolution: number;
}

Properties

elevation: number

The elevation at the sample location.

The map on which the sample was done.

resolution: number

The resolution of the elevation raster this sample was taken from.