kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
30 lines (29 loc) • 951 B
TypeScript
import { Field, TooltipField, CompareType } from '@kepler.gl/types';
/**
* Minus sign used in tooltip formatting.
* \u2212 or \u002D is the minus sign that d3-format uses for decimal number formatting
* d3-format 2.0 uses \u002D
*/
export declare const TOOLTIP_MINUS_SIGN = "\u2212";
export declare const NEGATIVE_SIGNS: string[];
export declare const BRUSH_CONFIG: {
range: [number, number];
};
export declare function findFieldsToShow({ fields, id, maxDefaultTooltips }: {
fields: Field[];
id: string;
maxDefaultTooltips: number;
}): {
[key: string]: string[];
};
export declare function getTooltipDisplayDeltaValue({ field, value, primaryValue, compareType }: {
field: Field;
value: any;
primaryValue: any;
compareType?: CompareType;
}): string | null;
export declare function getTooltipDisplayValue({ item, field, value }: {
item: TooltipField | undefined;
field: Field;
value: any;
}): string;