gis-tools-ts
Version:
A collection of geospatial tools primarily designed for WGS84, Web Mercator, and S2.
11 lines • 352 B
TypeScript
import type { VectorPoint } from '../../index.js';
export * from './base.js';
export * from './coords.js';
/** 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