UNPKG

@giro3d/giro3d

Version:

A JS/WebGL framework for 3D geospatial data visualization

20 lines 662 B
import type { ImageResponse } from './ImageSource'; import CoordinateSystem from '../core/geographic/CoordinateSystem'; import Extent from '../core/geographic/Extent'; import ImageSource from './ImageSource'; /** * An image source that produces nothing. Mainly for debugging/testing purposes. */ declare class NullSource extends ImageSource { readonly isNullSource: true; readonly type: "NullSource"; private readonly _extent; constructor(options?: { extent?: Extent; }); getCrs(): CoordinateSystem; getImages(): ImageResponse[]; getExtent(): Extent; } export default NullSource; //# sourceMappingURL=NullSource.d.ts.map