UNPKG

@dtcv/convert

Version:

Convert coordinate to meter offset, including optional projection

14 lines 424 B
export declare function projectCoordinate(x: any, y: any, fromProj?: string, toProj?: string): any; export type ConvertOptions = { x: number; y: number; z?: number; fromCrs?: string; toCrs?: string; center?: [number, number, number]; out?: number[]; setZToZero?: boolean; }; declare const convert: (options: ConvertOptions) => number[]; export { convert }; //# sourceMappingURL=index.d.ts.map