UNPKG

@deck.gl/carto

Version:

CARTO official integration with Deck.gl. Build geospatial applications using CARTO and Deck.gl.

21 lines 690 B
import { Indices, IndexScheme } from "./spatialjson-utils.js"; import { NumericProp } from "./carto-tile.js"; export declare class IndicesReader { static read(pbf: any, end?: number): Indices; static _readField(this: void, tag: number, obj: any, pbf: any): void; } interface Cells { indices: Indices; properties: Record<string, string>[]; numericProps: Record<string, NumericProp>; } export interface Tile { scheme: IndexScheme; cells: Cells; } export declare class TileReader { static read(pbf: any, end?: number): Tile; static _readField(this: void, tag: number, obj: Tile, pbf: any): void; } export {}; //# sourceMappingURL=carto-spatial-tile.d.ts.map