UNPKG

ag-charts-enterprise

Version:

Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue

14 lines (13 loc) 735 B
import { _ModuleSupport } from 'ag-charts-community'; import { type Geometry, type Position } from 'ag-charts-core'; import { LonLatBBox } from './lonLatBbox'; export declare function geometryBbox(geometry: Geometry, into: LonLatBBox | undefined): LonLatBBox | undefined; export declare function largestPolygon(geometry: Geometry): Position[][] | undefined; export declare function largestLineString(geometry: Geometry): Position[] | undefined; export declare enum GeometryType { Polygon = 1, LineString = 2, Point = 4 } export declare function containsType(geometry: Geometry | null, type: GeometryType): boolean; export declare function projectGeometry(geometry: Geometry, scale: _ModuleSupport.MercatorScale): Geometry;