Sha256: 211f7ff15da19532c8bf0c0fa9a69b19d100343847feeffb0f32448e0b1164ba
Contents?: true
Size: 1.04 KB
Versions: 51
Compression:
Stored size: 1.04 KB
Contents
var AreaLabel = function (options, link_to_map) { if (options.area_hash != undefined && typeof options.area_hash.id != 'undefined') { this._x = options.coords[0]; this._y = options.coords[1]; this._map = link_to_map; // создадим узел, который будет помещён в дерево и будет виден пользователю this._g = document.createElementNS('http://www.w3.org/2000/svg', 'g'); this._text_element_ns = document.createElementNS('http://www.w3.org/2000/svg', 'text'); this._text_element_ns.setAttribute('x', this._x); this._text_element_ns.setAttribute('y', this._y); this._text_element_ns.setAttribute('fill', '#000000'); this._text_element_ns.setAttribute('style', 'font-size:12px;font-weight:bold;'); this._text_element_ns.textContent = "id="+options.area_hash.id + "; " + options.area_hash.title; // this._map.addNodeToSvg(this._g, true); this._g.appendChild(this._text_element_ns); } };
Version data entries
51 entries across 51 versions & 2 rubygems