/home/techb158/workloadmatch.com/workloadmatch.com/BackUp/bower_components/jvectormap/src
NameSizeModeActions
abstract-canvas-element.js29080644editdlrm
abstract-element.js16520644editdlrm
abstract-shape-element.js18330644editdlrm
color-scale.js10280644editdlrm
data-series.js52550644editdlrm
jvectormap.js42330644editdlrm
legend.js26700644editdlrm
map-object.js19990644editdlrm
map.js405910644editdlrm
marker.js20660644editdlrm
multimap.js44350644editdlrm
numeric-scale.js42580644editdlrm
ordinal-scale.js3520644editdlrm
proj.js65680644editdlrm
region.js12480644editdlrm
simple-scale.js1330644editdlrm
svg-canvas-element.js8770644editdlrm
svg-circle-element.js1800644editdlrm
svg-element.js12260644editdlrm
svg-group-element.js2380644editdlrm
svg-image-element.js11000644editdlrm
svg-path-element.js2210644editdlrm
svg-shape-element.js18770644editdlrm
svg-text-element.js3930644editdlrm
vector-canvas.js5040644editdlrm
vml-canvas-element.js15400644editdlrm
vml-circle-element.js8200644editdlrm
vml-element.js29120644editdlrm
vml-group-element.js3400644editdlrm
vml-image-element.js14490644editdlrm
vml-path-element.js29470644editdlrm
vml-shape-element.js14490644editdlrm
Edit: /home/techb158/workloadmatch.com/workloadmatch.com/BackUp/bower_components/jvectormap/src/marker.js (2066B)
jvm.Marker = function(config){ var text, offsets; this.config = config; this.map = this.config.map; this.isImage = !!this.config.style.initial.image; this.createShape(); text = this.getLabelText(config.index); if (this.config.label && text) { this.offsets = this.getLabelOffsets(config.index); this.labelX = config.cx / this.map.scale - this.map.transX; this.labelY = config.cy / this.map.scale - this.map.transY; this.label = config.canvas.addText({ text: text, 'data-index': config.index, dy: "0.6ex", x: this.labelX, y: this.labelY }, config.labelStyle, config.labelsGroup); this.label.addClass('jvectormap-marker jvectormap-element'); } }; jvm.inherits(jvm.Marker, jvm.MapObject); jvm.Marker.prototype.createShape = function(){ var that = this; if (this.shape) { this.shape.remove(); } this.shape = this.config.canvas[this.isImage ? 'addImage' : 'addCircle']({ "data-index": this.config.index, cx: this.config.cx, cy: this.config.cy }, this.config.style, this.config.group); this.shape.addClass('jvectormap-marker jvectormap-element'); if (this.isImage) { jvm.$(this.shape.node).on('imageloaded', function(){ that.updateLabelPosition(); }); } }; jvm.Marker.prototype.updateLabelPosition = function(){ if (this.label) { this.label.set({ x: this.labelX * this.map.scale + this.offsets[0] + this.map.transX * this.map.scale + 5 + (this.isImage ? (this.shape.width || 0) / 2 : this.shape.properties.r), y: this.labelY * this.map.scale + this.map.transY * this.map.scale + this.offsets[1] }); } }; jvm.Marker.prototype.setStyle = function(property, value){ var isImage; jvm.Marker.parentClass.prototype.setStyle.apply(this, arguments); if (property === 'r') { this.updateLabelPosition(); } isImage = !!this.shape.get('image'); if (isImage != this.isImage) { this.isImage = isImage; this.config.style = jvm.$.extend(true, {}, this.shape.style); this.createShape(); } };