kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
22 lines (21 loc) • 862 B
TypeScript
import React from 'react';
import PropTypes from 'prop-types';
import { NumberValue } from 'd3-scale';
export declare function getTickFormat(timezone: string): (date: any) => string;
export declare function getXAxis(domain: Date[] | NumberValue[], width: number, isEnlarged: boolean, timezone: string): any;
export declare function updateAxis(xAxisRef: any, xAxis: any): void;
interface TimeSliderMarkerProps {
width: number;
domain: Date[] | NumberValue[];
isEnlarged?: boolean;
height?: number;
timezone: string;
}
declare function TimeSliderMarkerFactory(): React.MemoExoticComponent<{
({ width, domain, isEnlarged, height, timezone }: TimeSliderMarkerProps): React.JSX.Element;
propTypes: {
domain: PropTypes.Validator<any[]>;
width: PropTypes.Validator<number>;
};
}>;
export default TimeSliderMarkerFactory;