ol 7.3.1-dev.1681303152721 → 7.3.1-dev.1681790901728
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/Map.d.ts +1 -1
- package/Map.js +1 -1
- package/View.d.ts +2 -2
- package/View.js +2 -2
- package/dist/ol.js +1 -1
- package/dist/ol.js.map +1 -1
- package/package.json +1 -1
- package/proj.d.ts +5 -5
- package/proj.d.ts.map +1 -1
- package/proj.js +5 -5
- package/util.js +1 -1
package/Map.d.ts
CHANGED
package/Map.js
CHANGED
|
@@ -54,7 +54,7 @@ import {warn} from './console.js';
|
|
|
54
54
|
* @property {boolean} animate Animate.
|
|
55
55
|
* @property {import("./transform.js").Transform} coordinateToPixelTransform CoordinateToPixelTransform.
|
|
56
56
|
* @property {import("rbush").default} declutterTree DeclutterTree.
|
|
57
|
-
* @property {null|import("./extent.js").Extent} extent Extent.
|
|
57
|
+
* @property {null|import("./extent.js").Extent} extent Extent (in view projection coordinates).
|
|
58
58
|
* @property {import("./extent.js").Extent} [nextExtent] Next extent during an animation series.
|
|
59
59
|
* @property {number} index Index.
|
|
60
60
|
* @property {Array<import("./layer/Layer.js").State>} layerStatesArray LayerStatesArray.
|
package/View.d.ts
CHANGED
|
@@ -326,7 +326,7 @@ export type AnimationOptions = {
|
|
|
326
326
|
};
|
|
327
327
|
export type State = {
|
|
328
328
|
/**
|
|
329
|
-
* Center.
|
|
329
|
+
* Center (in view projection coordinates).
|
|
330
330
|
*/
|
|
331
331
|
center: import("./coordinate.js").Coordinate;
|
|
332
332
|
/**
|
|
@@ -367,7 +367,7 @@ export type ViewStateLayerStateExtent = {
|
|
|
367
367
|
*/
|
|
368
368
|
viewState: State;
|
|
369
369
|
/**
|
|
370
|
-
* Extent.
|
|
370
|
+
* Extent (in user projection coordinates).
|
|
371
371
|
*/
|
|
372
372
|
extent: import("./extent.js").Extent;
|
|
373
373
|
/**
|
package/View.js
CHANGED
|
@@ -202,7 +202,7 @@ import {fromExtent as polygonFromExtent} from './geom/Polygon.js';
|
|
|
202
202
|
|
|
203
203
|
/**
|
|
204
204
|
* @typedef {Object} State
|
|
205
|
-
* @property {import("./coordinate.js").Coordinate} center Center.
|
|
205
|
+
* @property {import("./coordinate.js").Coordinate} center Center (in view projection coordinates).
|
|
206
206
|
* @property {import("./proj/Projection.js").default} projection Projection.
|
|
207
207
|
* @property {number} resolution Resolution.
|
|
208
208
|
* @property {import("./coordinate.js").Coordinate} [nextCenter] The next center during an animation series.
|
|
@@ -216,7 +216,7 @@ import {fromExtent as polygonFromExtent} from './geom/Polygon.js';
|
|
|
216
216
|
* Like {@link import("./Map.js").FrameState}, but just `viewState` and `extent`.
|
|
217
217
|
* @typedef {Object} ViewStateLayerStateExtent
|
|
218
218
|
* @property {State} viewState View state.
|
|
219
|
-
* @property {import("./extent.js").Extent} extent Extent.
|
|
219
|
+
* @property {import("./extent.js").Extent} extent Extent (in user projection coordinates).
|
|
220
220
|
* @property {Array<import("./layer/Layer.js").State>} [layerStatesArray] Layer states.
|
|
221
221
|
*/
|
|
222
222
|
|