File "applyTransformParams.js"
Full Path: /home/cananyalcin/public_html/vendors/jqvmap/src/VectorCanvas/applyTransformParams.js
File size: 406 bytes
MIME-type: text/plain
Charset: utf-8
VectorCanvas.prototype.applyTransformParams = function (scale, transX, transY) {
if (this.mode === 'svg') {
this.rootGroup.setAttribute('transform', 'scale(' + scale + ') translate(' + transX + ', ' + transY + ')');
} else {
this.rootGroup.coordorigin = (this.width - transX) + ',' + (this.height - transY);
this.rootGroup.coordsize = this.width / scale + ',' + this.height / scale;
}
};