Skip to content

Instantly share code, notes, and snippets.

@wgrzr
Last active November 2, 2021 03:10
Show Gist options
  • Save wgrzr/05e7b8b58838cdb52a0c4294f9a212cc to your computer and use it in GitHub Desktop.
Save wgrzr/05e7b8b58838cdb52a0c4294f9a212cc to your computer and use it in GitHub Desktop.
// this outputs coordinates of yaw/pitch on click
document.addEventListener("click", (e) => {
var view = viewer.view();
let x = e.clientX;
let y = e.clientY;
console.log(view.screenToCoordinates({ x, y }));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment