I've been working with the new image-map tool with great results. Makes for a fantastic UI. However, when placing text inside the boxes for user's to 'click', the multiline tool in SVG (TSPAN) is not being recognized in S123.
In my development environment, everything looks great:

Note the multi line, horz & vert centered text.
However, note the same SVG, displayed S123: the multi line text is ignored and multiple rows are merged into one:

Here's an SVG extract of the text in the bottom left corner:
<text
x="50" y="350"
dominant-baseline="central"
text-anchor="middle"
font-family="sans-serif"
font-weight="bold"
font-size="18px"
fill="#000000"
stroke="none">
<tspan x="50" dy="-1.2em">🌐</tspan>
<tspan x="50" dy="1.2em">Map</tspan>
<tspan x="50" dy="1.2em">Note</tspan>
</text>
Any help or suggestions are welcome!
JP