kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
22 lines (21 loc) • 710 B
TypeScript
import { h3GetResolution, H3Index, h3IsValid } from 'h3-js';
export { h3GetResolution, h3IsValid };
export declare type Centroid = [number, number];
export declare function getVertices({ id }: {
id: H3Index;
}): number[][];
export declare function getCentroid({ id }: {
id: H3Index;
}): Centroid;
export declare function idToPolygonGeo(object?: {
id: H3Index;
}, properties?: any): {
type: string;
geometry: {
coordinates: number[][] | number[][][];
type: string;
};
properties: any;
} | null;
export declare const isHexField: (field: any, _fieldIdx: any, _dataContainer: any) => boolean;
export declare const getHexFields: (fields: any, dataContainer: any) => any;