diff --git a/ui-ngx/src/app/shared/models/widget/maps/marker-shape.models.ts b/ui-ngx/src/app/shared/models/widget/maps/marker-shape.models.ts index 3d8f44df3f..29e04dbaa1 100644 --- a/ui-ngx/src/app/shared/models/widget/maps/marker-shape.models.ts +++ b/ui-ngx/src/app/shared/models/widget/maps/marker-shape.models.ts @@ -224,14 +224,6 @@ const createColorMarkerShape = (iconRegistry: MatIconRegistry, domSanitizer: Dom el.setAttribute('fill', '#'+color.toHex()); el.setAttribute('fill-opacity', `${color.getAlpha()}`); }); - const strokeElements = Array.from(svgElement.getElementsByClassName('marker-stroke')); - if (svgElement.classList.contains('marker-stroke')) { - strokeElements.push(svgElement); - } - strokeElements.forEach(el => { - el.setAttribute('stroke', '#'+color.toHex()); - el.setAttribute('stroke-opacity', `${color.getAlpha()}`); - }); const opacityElements = Array.from(svgElement.getElementsByClassName('marker-opacity')); if (svgElement.classList.contains('marker-opacity')) { opacityElements.push(svgElement);