mirror of
https://github.com/visgl/luma.gl.git
synced 2025-12-08 17:36:19 +00:00
13 lines
313 B
JavaScript
13 lines
313 B
JavaScript
/* global window */
|
|
|
|
// Get the bounding box of a DOMElement relative to the page
|
|
export function getBoundingBoxInPage(domElement) {
|
|
const bbox = domElement.getBoundingClientRect();
|
|
return {
|
|
x: window.scrollX + bbox.x,
|
|
y: window.scrollY + bbox.y,
|
|
width: bbox.width,
|
|
height: bbox.height
|
|
};
|
|
}
|