Files
igny8/frontend/node_modules/@react-jvectormap/lib/src/vector-canvas.js
2025-11-09 10:27:02 +00:00

18 lines
504 B
JavaScript

/**
* Class for vector images manipulations.
* @constructor
* @param {DOMElement} container to place canvas to
* @param {Number} width
* @param {Number} height
*/
jvm.VectorCanvas = function(container, width, height) {
this.mode = window.SVGAngle ? 'svg' : 'vml';
if (this.mode == 'svg') {
this.impl = new jvm.SVGCanvasElement(container, width, height);
} else {
this.impl = new jvm.VMLCanvasElement(container, width, height);
}
this.impl.mode = this.mode;
return this.impl;
};