UNPKG

kepler.gl

Version:

kepler.gl is a webgl based application to visualize large scale location data in the browser

13 lines (12 loc) 371 B
import { LineLayer, LineLayerProps } from '@deck.gl/layers'; import type { Color } from '@deck.gl/core'; type RGBAColor = Color; export default class EnhancedLineLayer extends LineLayer<any, LineLayerProps<any> & { elevationScale: number; getTargetColor: RGBAColor; }> { getShaders(): any; draw(opts: any): void; initializeState(): void; } export {};