UNPKG

@geogirafe/lib-geoportal

Version:

GeoGirafe is a flexible application to build online geoportals.

13 lines (12 loc) 268 B
export type CameraConfig = { heading: number; pitch: number; roll: number; }; export default class GlobeState { display: '2D' | '3D' | '2D/3D'; loaded: boolean; shadows: boolean; shadowsTimestamp: number; camera: CameraConfig | null; }