UNPKG

gis-tools-ts

Version:

A collection of geospatial tools primarily designed for WGS84, Web Mercator, and S2.

11 lines 337 B
import type { VectorPoint } from '../..'; export * from './base'; export * from './coords'; /** All projections need these parameters */ export interface ProjectionTransform { shortName: string; projName?: string; forward: (p: VectorPoint) => void; inverse: (p: VectorPoint) => void; } //# sourceMappingURL=index.d.ts.map