Сделал пользовательский layout через IDomTile.
В renderAt формируется канвас, который передается на карту.
Проблема в том, что в анимации при зумировании канвасы не тянутся. прыгают из стороны в сторону.
пробовал сделать так:
var canvas = controller._model.renderT
ile.call(controller._mode l, this.coord, this.zoom); this.content = document.createElement('ymaps');
this.content.style.backgroundSize = '100%';
this.content.style.position = 'absolute';
this.content.style.backgroundImage = "url(" + canvas.toDataURL("image/png") + ")";
this.content.style.height = canvas.style.height;
this.content.style.width = canvas.style.width;
if (typeof this.content.style.webkitUserSelect !== 'undefined') {
this.content.style.webkitUserSelect = 'none';
this.content.style.webkitTransformOrigin = '0px 0px';
}
context.appendChild(this.content);
все равно скачет. помогите, плиз.