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/dist/ol.js +1 -1
- package/dist/ol.js.map +1 -1
- package/package.json +1 -1
- package/renderer/canvas/VectorTileLayer.js +2 -2
- package/util.js +1 -1
package/package.json
CHANGED
|
@@ -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.
|
|
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