ol 10.2.2-dev.1730160610319 → 10.2.2-dev.1730230443067

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/geom/Geometry.js CHANGED
@@ -322,7 +322,7 @@ class Geometry extends BaseObject {
322
322
  0,
323
323
  0,
324
324
  );
325
- transform2D(
325
+ const transformed = transform2D(
326
326
  inCoordinates,
327
327
  0,
328
328
  inCoordinates.length,
@@ -331,8 +331,8 @@ class Geometry extends BaseObject {
331
331
  outCoordinates,
332
332
  );
333
333
  return getTransform(sourceProj, destination)(
334
- inCoordinates,
335
- outCoordinates,
334
+ transformed,
335
+ transformed,
336
336
  stride,
337
337
  );
338
338
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ol",
3
- "version": "10.2.2-dev.1730160610319",
3
+ "version": "10.2.2-dev.1730230443067",
4
4
  "description": "OpenLayers mapping library",
5
5
  "keywords": [
6
6
  "map",
@@ -1 +1 @@
1
- {"version":3,"file":"TileDebug.d.ts","sourceRoot":"","sources":["TileDebug.js"],"names":[],"mappings":";;;;;iBAUc,OAAO,YAAY,EAAE,cAAc;;;;;;;;;;;;;;;;;;;;;AAFjD;;;;;;;;;;;GAWG;AAEH;;;;;;GAMG;AACH;IACE;;OAEG;IACH,2CA+BC;CACF;sBA5DqB,gBAAgB"}
1
+ {"version":3,"file":"TileDebug.d.ts","sourceRoot":"","sources":["TileDebug.js"],"names":[],"mappings":";;;;;iBAUc,OAAO,YAAY,EAAE,cAAc;;;;;;;;;;;;;;;;;;;;;AAFjD;;;;;;;;;;;GAWG;AAEH;;;;;;GAMG;AACH;IACE;;OAEG;IACH,2CAgCC;CACF;sBA7DqB,gBAAgB"}
@@ -38,6 +38,7 @@ class TileDebug extends ImageTile {
38
38
  const template = options.template || 'z:{z} x:{x} y:{y}';
39
39
 
40
40
  super({
41
+ transition: 0,
41
42
  projection: options.projection,
42
43
  tileGrid: options.tileGrid,
43
44
  wrapX: options.wrapX !== undefined ? options.wrapX : true,
package/util.js CHANGED
@@ -33,4 +33,4 @@ export function getUid(obj) {
33
33
  * OpenLayers version.
34
34
  * @type {string}
35
35
  */
36
- export const VERSION = '10.2.2-dev.1730160610319';
36
+ export const VERSION = '10.2.2-dev.1730230443067';