UNPKG

kepler.gl

Version:

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

26 lines (25 loc) 908 B
/// <reference types="deck.gl" /> import { RGBAColor } from '@deck.gl/core'; import { Feature } from '@kepler.gl/types'; export declare const EDIT_HANDLE_STYLE: { getRadius: number; getFillColor: RGBAColor; getOutlineColor: (handle: any) => RGBAColor; highlightMultiplier: number[]; highlightMultiplierNone: RGBAColor; }; export declare const FEATURE_STYLE: { getColor: (feature: Feature, isSelected: boolean) => RGBAColor; highlightMultiplier: number[]; highlightMultiplierNone: RGBAColor; }; export declare const LINE_STYLE: { getColor: (_feature: Feature, isSelected: boolean) => RGBAColor; getWidth: (_feature: Feature, isSelected: boolean) => number; getTentativeLineColor: () => RGBAColor; getTentativeLineWidth: () => number; getTentativeFillColor: RGBAColor; dashArray: number[]; solidArray: number[]; highlightMultiplier: number[]; };