ol 10.5.1-dev.1745652838045 → 10.5.1-dev.1746262133835
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/Overlay.js +2 -2
- package/dist/ol.js +1 -1
- package/dist/ol.js.map +1 -1
- package/expr/expression.d.ts +18 -18
- package/expr/expression.js +18 -18
- package/package.json +1 -1
- package/util.js +1 -1
package/Overlay.js
CHANGED
|
@@ -533,8 +533,8 @@ class Overlay extends BaseObject {
|
|
|
533
533
|
|
|
534
534
|
this.setVisible(true);
|
|
535
535
|
|
|
536
|
-
const x =
|
|
537
|
-
const y =
|
|
536
|
+
const x = `${pixel[0] + offset[0]}px`;
|
|
537
|
+
const y = `${pixel[1] + offset[1]}px`;
|
|
538
538
|
let posX = '0%';
|
|
539
539
|
let posY = '0%';
|
|
540
540
|
if (
|