UNPKG

@giro3d/giro3d

Version:

A JS/WebGL framework for 3D geospatial data visualization

20 lines 497 B
import type ElevationProvider from './ElevationProvider'; /** * Contains information about an elevation sample taken on a map. */ interface ElevationSample { /** * The provider on which the sample was done. */ source: ElevationProvider; /** * The elevation at the sample location. */ elevation: number; /** * The resolution of the sample. */ resolution: number; } export default ElevationSample; //# sourceMappingURL=ElevationSample.d.ts.map