kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
16 lines (15 loc) • 400 B
TypeScript
export declare enum DatasetType {
LOCAL = "local",
VECTOR_TILE = "vector-tile"
}
export declare enum RemoteTileFormat {
MVT = "mvt",
PMTILES = "pmtiles"
}
export declare const REMOTE_TILE = "remote";
export declare type VectorTileDatasetMetadata = {
type: typeof REMOTE_TILE;
remoteTileFormat: RemoteTileFormat;
tilesetDataUrl: string;
tilesetMetadataUrl?: string;
};