UNPKG

kepler.gl

Version:

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

17 lines (16 loc) 696 B
import { TileJSON } from '@loaders.gl/mvt'; import { PMTilesMetadata } from '@loaders.gl/pmtiles'; import { VectorTileMetadata, VectorTileType } from '@kepler.gl/layers'; declare type FetchVectorTileMetadataProps = { url: string | null; type: VectorTileType; process?: (json: PMTilesMetadata | TileJSON) => VectorTileMetadata | Error | null; }; declare type FetchVectorTileMetadataReturn = { data: VectorTileMetadata | null; loading: boolean; error: Error | null; }; /** Hook to fetch and return mvt or pmtiles metadata. */ export default function useFetchVectorTileMetadata({ type, url, process }: FetchVectorTileMetadataProps): FetchVectorTileMetadataReturn; export {};