kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
29 lines (24 loc) • 719 B
TypeScript
import React from 'react';
import {FunctionComponent} from 'react';
import {IntlShape} from 'react-intl';
import {LayerHoverProp} from '../../utils/layer-utils';
export type MapPopoverProps = {
x: number;
y: number;
frozen?: boolean;
coordinate: [number, number] | boolean;
layerHoverProp: LayerHoverProp | null;
isBase?: boolean;
zoom: number;
container?: HTMLElement | null;
onClose: () => void;
};
type IntlProps = {
intl: IntlShape;
};
export const MapPopover: FunctionComponent<MapPopoverProps & IntlProps>;
function MapPopoverFactory(
LayerHoverInfo: React.Component,
CoordinateInfo: React.Component
): FunctionComponent<MapPopoverProps & IntlProps>;
export default MapPopoverFactory;