kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
47 lines (46 loc) • 1.52 kB
TypeScript
import React, { HTMLAttributes, PropsWithChildren } from 'react';
import { MapStyle } from '@kepler.gl/reducers';
import { Layer, LayerClassesType } from '@kepler.gl/layers';
import { Filter, InteractionConfig, UiState } from '@kepler.gl/types';
import { MapStyleActions, VisStateActions, MapStateActions, UIStateActions } from '@kepler.gl/actions';
import { Datasets } from '@kepler.gl/table';
export declare type BaseComponentProps = PropsWithChildren<HTMLAttributes<unknown>>;
export declare type SidePanelItem = {
id: string;
label: string;
iconComponent: React.ComponentType<any>;
component: React.ComponentType<any>;
};
export declare type SidePanelProps = {
appName: string;
appWebsite: string;
filters: Filter[];
interactionConfig: InteractionConfig;
layerBlending: string;
overlayBlending?: string;
layers: Layer[];
layerClasses: LayerClassesType;
layerOrder: string[];
mapStyle: MapStyle;
mapInfo: {
title?: string;
description?: string;
};
width: number;
datasets: Datasets;
uiStateActions: typeof UIStateActions;
visStateActions: typeof VisStateActions;
mapStateActions: typeof MapStateActions;
mapStyleActions: typeof MapStyleActions;
uiState: UiState;
availableProviders: {
[k: string]: {
hasShare?: boolean;
hasStorage?: boolean;
};
};
mapSaved?: string | null;
panels?: SidePanelItem[];
onSaveMap?: () => void;
version: string;
};