ol 10.1.1-dev.1726174727743 → 10.1.1-dev.1726482744540

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.1.1-dev.1726174727743",
3
+ "version": "10.1.1-dev.1726482744540",
4
4
  "description": "OpenLayers mapping library",
5
5
  "keywords": [
6
6
  "map",
@@ -22,7 +22,7 @@
22
22
  "url": "https://opencollective.com/openlayers"
23
23
  },
24
24
  "dependencies": {
25
- "@types/rbush": "^3.0.3",
25
+ "@types/rbush": "3.0.3",
26
26
  "color-rgba": "^3.0.0",
27
27
  "color-space": "^2.0.1",
28
28
  "earcut": "^3.0.0",
@@ -323,7 +323,7 @@ class CanvasTileLayerRenderer extends CanvasLayerRenderer {
323
323
  * @type {import('../../DataTile.js').ImageLike}
324
324
  */
325
325
  let image;
326
- if (tile instanceof ImageTile) {
326
+ if (tile instanceof ImageTile || tile instanceof ReprojTile) {
327
327
  image = tile.getImage();
328
328
  } else if (tile instanceof DataTile) {
329
329
  image = asImageLike(tile.getData());
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.1.1-dev.1726174727743';
36
+ export const VERSION = '10.1.1-dev.1726482744540';