(source, target)
| 235 | container.insertAdjacentElement('afterbegin', ss[s]); |
| 236 | } |
| 237 | function copyAttributes(source, target) { |
| 238 | return Array.from(source.attributes).forEach((attribute) => { |
| 239 | if (attribute.nodeName !== 'href') |
| 240 | target.setAttribute(attribute.nodeName, attribute.nodeValue); |
| 241 | }); |
| 242 | } |
| 243 | }, |
| 244 | |
| 245 | _createFeatures: function (markup, coords, tile) { |
no test coverage detected