Image Position on page

If it’s related to event (for example: onClick), you can do something like:

$w('#image').onClick(event => {
const {pageX, pageY, screenX, screenY, clientX, clientY, offsetX, offsetY} = event;
//then do whatever you want with these variables.
})

But if you need to get location without any event, you’ll have to create your own elements using custom element.