UNPKG

kepler.gl

Version:

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

10 lines (9 loc) 408 B
/// <reference types="deck.gl" /> import { ScatterplotLayer, ScatterplotLayerProps } from '@deck.gl/layers'; import { Model } from '@luma.gl/core'; export interface ScatterplotIconLayerProps extends ScatterplotLayerProps<any> { iconGeometry: number; } export default class ScatterplotIconLayer extends ScatterplotLayer<any, ScatterplotIconLayerProps> { _getModel(gl: WebGLRenderingContext): Model; }