kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
15 lines (14 loc) • 519 B
TypeScript
import type { WMSCapabilities } from '@loaders.gl/wms';
import type { VectorTileMetadata } from '@kepler.gl/table';
import type { StacTypes } from '@kepler.gl/types';
export declare type DatasetCreationAttributes = {
name: string;
type: string;
metadata: Record<string, any>;
};
export declare type MetaResponse = {
metadata?: VectorTileMetadata | StacTypes.CompleteSTACObject | WMSCapabilities | null;
dataset?: DatasetCreationAttributes | null;
loading?: boolean;
error?: Error | null;
};