ol 10.6.2-dev.1753710948374 → 10.6.2-dev.1753712076119
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ol.js +1 -1
- package/dist/ol.js.map +1 -1
- package/package.json +1 -1
- package/proj/proj4.d.ts +1 -1
- package/proj/proj4.js +2 -2
- package/util.js +1 -1
package/package.json
CHANGED
package/proj/proj4.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ export function unregister(): void;
|
|
|
14
14
|
* registry, e.g. after calling `proj4.defs()`. Existing transforms will not be
|
|
15
15
|
* modified by this function.
|
|
16
16
|
*
|
|
17
|
-
* @param {import("proj4")
|
|
17
|
+
* @param {import("proj4")} proj4 Proj4.
|
|
18
18
|
* @api
|
|
19
19
|
*/
|
|
20
20
|
export function register(proj4: typeof import("proj4/dist/lib/core.js").default & {
|
package/proj/proj4.js
CHANGED
|
@@ -12,7 +12,7 @@ import {get as getCachedProjection} from './projections.js';
|
|
|
12
12
|
import {get as getTransform} from './transforms.js';
|
|
13
13
|
|
|
14
14
|
/**
|
|
15
|
-
* @type {import("proj4")
|
|
15
|
+
* @type {import("proj4")|null}
|
|
16
16
|
*/
|
|
17
17
|
let registered = null;
|
|
18
18
|
|
|
@@ -38,7 +38,7 @@ export function unregister() {
|
|
|
38
38
|
* registry, e.g. after calling `proj4.defs()`. Existing transforms will not be
|
|
39
39
|
* modified by this function.
|
|
40
40
|
*
|
|
41
|
-
* @param {import("proj4")
|
|
41
|
+
* @param {import("proj4")} proj4 Proj4.
|
|
42
42
|
* @api
|
|
43
43
|
*/
|
|
44
44
|
export function register(proj4) {
|
package/util.js
CHANGED