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