proj4
Version:
Proj4js is a JavaScript library to transform point coordinates from one coordinate system to another, including datum transformations.
25 lines (24 loc) • 450 B
TypeScript
export function init(): void;
export class init {
x0: number;
y0: number;
long0: number;
es: number;
title: string;
}
export function forward(ll: any): {
x: number;
y: any;
};
export function inverse(xy: any): {
x: number;
y: number;
};
export const names: string[];
declare namespace _default {
export { init };
export { forward };
export { inverse };
export { names };
}
export default _default;