UNPKG

kepler.gl

Version:

kepler.gl is a webgl based application to visualize large scale location data in the browser

25 lines (24 loc) 581 B
import { MapState } from '@kepler.gl/types'; /** * top left of the grid to a square polygon for the hover layer * and current latitude * @param object * @param cellSize * @param coverage * @param properties * @param mapState * @returns - geojson feature */ export declare function pointToPolygonGeo({ object, cellSize, coverage, properties, mapState }: { object: any; cellSize: number; coverage: number; properties?: any; mapState: MapState; }): { geometry: { coordinates: any[]; type: string; }; properties: any; } | null;