import { AccessorFunction, DefaultProps } from '@deck.gl/core'; import GeoCellLayer, { GeoCellLayerProps } from "../geo-cell-layer/GeoCellLayer.js"; /** All properties supported by QuadkeyLayer. */ export type QuadkeyLayerProps = _QuadkeyLayerProps & GeoCellLayerProps; /** Properties added by QuadkeyLayer. */ type _QuadkeyLayerProps = { /** * Called for each data object to retrieve the quadkey string identifier. * * By default, it reads `quadkey` property of data object. */ getQuadkey?: AccessorFunction; }; /** Render filled and/or stroked polygons based on the [Quadkey](https://towardsdatascience.com/geospatial-indexing-with-quadkeys-d933dff01496) geospatial indexing system. */ export default class QuadkeyLayer extends GeoCellLayer> & ExtraProps> { static layerName: string; static defaultProps: DefaultProps>; indexToBounds(): Partial | null; } export {}; //# sourceMappingURL=quadkey-layer.d.ts.map