Hello Klaus!
I noticed that the svg image is not displayed in ie11.
And I created a test page to demonstrate this problem.
If you manually set the background-size, then we will see the image.
Could you solve this problem?
Thank you!
Example: https://karta3d.net/aua/bugs/svg_ie11/
Code
<layer name="icon"
url="svg/icon.svg"
align="center"
crop="100|0|100|100"
width="100"
height="100"
event="fix()"
/>
<layer name="test" type="text" align="top" y="15" padding="8 10" html="FIX IE11" onclick="callwith(layer[icon], event)" />
<action name="fix" type="JavaScript">
setTimeout(function() {caller.sprite.style.backgroundSize = "200px, 400px"}, 0);
</action>
Display More