JS Touchmove obtenga la posición del cliente

src.addEventListener('touchstart', function(e) {
  const clientX = e.touches[0].clientX;
  const clientY = e.touches[0].clientY;
}, false);
florinrelea