Browse Source

UI: Remove process class marker-stroke in marker shape

pull/12866/head
Vladyslav_Prykhodko 1 year ago
parent
commit
6018f69f0e
  1. 8
      ui-ngx/src/app/shared/models/widget/maps/marker-shape.models.ts

8
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);

Loading…
Cancel
Save