HOME


Mini Shell 1.0
DIR:/home/drsekaran/public_html/admin/vendors/jqvmap/src/VectorCanvas/
Upload File :
Current File : /home/drsekaran/public_html/admin/vendors/jqvmap/src/VectorCanvas/applyTransformParams.js
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;
  }
};