I have an HTML5 canvas on a web page. When a user clicks on the canvas, I'd like to get the X and Y coordinates, relative to the canvas. I'd like to do this in Dart.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Dart has a synchronous version if getBoundingClientRect now, so you don't have to use the asynchronous version anymore.
There is also the "offsetX" and "offsetY" getters in MouseEvent which do the same thing, but i'm not sure if those fields will be their forever because they are not in the standard. |
|||
|
|
This answer is out of date, see the accepted answer aboveCreate a simple Point class:
Import dart:html library:
First step, get the client bounding rect for the canvas:
Next, define the offset algorithm from the window to the canvas.
Next, attach the click event handler to the canvas:
|
|||||||||||
|