maplibre-gl
Version:
BSD licensed community fork of mapbox-gl, a WebGL interactive maps library
12 lines (10 loc) • 335 B
text/typescript
import assert from 'assert';
import Point from '@mapbox/point-geometry';
export function indexTouches(touches: Array<Touch>, points: Array<Point>) {
assert(touches.length === points.length);
const obj = {};
for (let i = 0; i < touches.length; i++) {
obj[touches[i].identifier] = points[i];
}
return obj;
}