ol 10.2.2-dev.1732036868026 → 10.2.2-dev.1732203547341

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ol",
3
- "version": "10.2.2-dev.1732036868026",
3
+ "version": "10.2.2-dev.1732203547341",
4
4
  "description": "OpenLayers mapping library",
5
5
  "keywords": [
6
6
  "map",
@@ -647,8 +647,8 @@ class CanvasVectorTileLayerRenderer extends CanvasTileLayerRenderer {
647
647
  usedZIndices[key] = true;
648
648
  }
649
649
  }
650
- const zIndexKeys = Object.keys(usedZIndices).sort(ascending);
651
- zIndexKeys.map(Number).forEach((zIndex) => {
650
+ const zIndexKeys = Object.keys(usedZIndices).map(Number).sort(ascending);
651
+ zIndexKeys.forEach((zIndex) => {
652
652
  executorGroupZIndexContexts.forEach((zIndexContexts, i) => {
653
653
  if (!zIndexContexts[zIndex]) {
654
654
  return;
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.1732036868026';
36
+ export const VERSION = '10.2.2-dev.1732203547341';