UNPKG

@giro3d/giro3d

Version:

A JS/WebGL framework for 3D geospatial data visualization

40 lines 920 B
import type { ColorRepresentation } from 'three'; /** * Options for map graticules. */ export interface GraticuleOptions { /** * Enables the graticule. */ enabled: boolean; /** * The graticule thickness, in CRS units. */ thickness: number; /** * The graticule color. */ color: ColorRepresentation; /** * The distance between vertical lines, in CRS units. */ xStep: number; /** * The distance between horizontal lines, in CRS units. */ yStep: number; /** * The X coordinate of the starting point of the graticule, in CRS units. */ xOffset: number; /** * The Y coordinate of the starting point of the graticule, in CRS units. */ yOffset: number; /** * The graticule opacity. */ opacity: number; } export default GraticuleOptions; //# sourceMappingURL=GraticuleOptions.d.ts.map