ol 10.3.2-dev.1733862509126 → 10.3.2-dev.1733934697983
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/Image.js +1 -1
- package/dist/ol.js +1 -1
- package/dist/ol.js.map +1 -1
- package/package.json +1 -1
- package/util.js +1 -1
package/Image.js
CHANGED
|
@@ -181,7 +181,7 @@ class ImageWrapper extends EventTarget {
|
|
|
181
181
|
}
|
|
182
182
|
if (
|
|
183
183
|
image instanceof HTMLImageElement ||
|
|
184
|
-
image instanceof ImageBitmap ||
|
|
184
|
+
(CREATE_IMAGE_BITMAP && image instanceof ImageBitmap) ||
|
|
185
185
|
image instanceof HTMLCanvasElement ||
|
|
186
186
|
image instanceof HTMLVideoElement
|
|
187
187
|
) {
|