Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1.     drawText: function(featureId, style, location) {
  2.         var node = document.getElementById(featureId);
  3.         if (node) {
  4.             if (node.children.length === 1) {
  5.                 var text = document.createElement('strong');
  6.                 text.innerHTML = style.label;
  7.                 node.appendChild(text);
  8.             } else if (node.children.length == 2) {
  9.                 node.children[1].innerHTML = style.label;
  10.             }
  11.         }
  12.     }