planning
All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s

This commit is contained in:
2024-10-14 09:15:30 +02:00
parent bcba00a730
commit 6e64e138e2
21059 changed files with 2317811 additions and 1 deletions

54
node_modules/ol/proj/epsg3857.d.ts generated vendored Normal file
View File

@@ -0,0 +1,54 @@
/**
* Transformation from EPSG:4326 to EPSG:3857.
*
* @param {Array<number>} input Input array of coordinate values.
* @param {Array<number>} [opt_output] Output array of coordinate values.
* @param {number} [opt_dimension] Dimension (default is `2`).
* @return {Array<number>} Output array of coordinate values.
*/
export function fromEPSG4326(input: Array<number>, opt_output?: number[] | undefined, opt_dimension?: number | undefined): Array<number>;
/**
* Transformation from EPSG:3857 to EPSG:4326.
*
* @param {Array<number>} input Input array of coordinate values.
* @param {Array<number>} [opt_output] Output array of coordinate values.
* @param {number} [opt_dimension] Dimension (default is `2`).
* @return {Array<number>} Output array of coordinate values.
*/
export function toEPSG4326(input: Array<number>, opt_output?: number[] | undefined, opt_dimension?: number | undefined): Array<number>;
/**
* Radius of WGS84 sphere
*
* @const
* @type {number}
*/
export const RADIUS: number;
/**
* @const
* @type {number}
*/
export const HALF_SIZE: number;
/**
* @const
* @type {import("../extent.js").Extent}
*/
export const EXTENT: import("../extent.js").Extent;
/**
* @const
* @type {import("../extent.js").Extent}
*/
export const WORLD_EXTENT: import("../extent.js").Extent;
/**
* Maximum safe value in y direction
* @const
* @type {number}
*/
export const MAX_SAFE_Y: number;
/**
* Projections equal to EPSG:3857.
*
* @const
* @type {Array<import("./Projection.js").default>}
*/
export const PROJECTIONS: Array<import("./Projection.js").default>;
//# sourceMappingURL=epsg3857.d.ts.map