Hi,
I am assuming that you meant "SVG interactive" when you mentioned about launch map, if so, the problem is that the Image core component adds the SVG in an SRC attribute. And by definition, using SVG images in a <img>
tag does not support interactivity directly. When you reference an SVG file using the src
attribute of an <img>
tag, the SVG is treated as a static image, and you cannot manipulate its internal elements with JavaScript.
If you need to interact with the SVG, you should include the SVG code directly in your HTML.
Hope this helps
Esteban Bustamante