proj4
Version:
Proj4js is a JavaScript library to transform point coordinates from one coordinate system to another, including datum transformations.
23 lines (22 loc) • 401 B
TypeScript
export function init(): void;
export class init {
name: string;
}
export function forward(p: any): {
x: number;
y: number;
z: any;
};
export function inverse(p: any): {
x: any;
y: any;
z: any;
};
export const names: string[];
declare namespace _default {
export { init };
export { forward };
export { inverse };
export { names };
}
export default _default;