import { AccessorFunction, DefaultProps } from '@deck.gl/core'; import GeoCellLayer from "../geo-cell-layer/GeoCellLayer.js"; /** * Properties of `GeohashLayer`. */ export type GeohashLayerProps = { /** * Called for each data object to retrieve the geohash string identifier. * * By default, it reads `geohash` property of data object. */ getGeohash?: AccessorFunction; }; /** Render filled and/or stroked polygons based on the [Geohash](https://en.wikipedia.org/wiki/Geohash) geospatial indexing system. */ export default class GeohashLayer extends GeoCellLayer & ExtraProps> { static layerName: string; static defaultProps: DefaultProps>; indexToBounds(): Partial | null; } //# sourceMappingURL=geohash-layer.d.ts.map