Привет друзья!
Подключил к карте этот плагин для рисования области
https://tech.yandex.ru/maps/jsbox/2.1/polygon_custom
но на мобиле он не хочет рисовать. Поменял событие onmousemove на ontouchmove, все равно не помогает.
...
canvas.onmousemove = function (e) {
coordinates.push([e.offsetX, e.offsetY]);
ctx2d.clearRect(0, 0, canvas.width, canvas.height);
ctx2d.beginPath();
ctx2d.moveTo(coordinates[0][0], coordinates[0][1]);
for (var i = 1; i < coordinates.length; i++) {
ctx2d.lineTo(coordinates[i][0], coordinates[i][1]);
}
ctx2d.stroke();
}.bind(this);
...
Подскажите у меня руки кривые или плагин нельзя адаптировать под моб?