proj4
Version:
Proj4js is a JavaScript library to transform point coordinates from one coordinate system to another, including datum transformations.
21 lines (20 loc) • 429 B
TypeScript
export function init(): void;
export class init {
x0: number;
y0: number;
lat0: number;
long0: number;
lat_ts: number;
title: string;
rc: number;
}
export function forward(p: any): any;
export function inverse(p: any): any;
export const names: string[];
declare namespace _default {
export { init };
export { forward };
export { inverse };
export { names };
}
export default _default;