I have a problem with 2 overlapping hotspots when using renderer="css3d".
I have one hotspot with zorder="52" and another with zorder="7". When the scene loads, the one with zorder="7" is on top, just because it is second in the XML. It seems to ignore the zorder at start.
If I do any change later with JS (like changing a zorders or adding a hotspot), the view updates and the zorder becomes correct. Also, if I use renderer="webgl", it works correct from the start.
Code
<krpano debugmode="true" showerrors="true" bgcolor="0x373737" >
<view hlookat="0" vlookat="0" camroll="5" limitview="lookat" fov="0.606083387890648" maxpixelzoom="1"
fovmin="0.5" fovmax="2" />
<hotspot hotspotId="33395" bordercolor="0xffffff" fillcolor="0xff56dc" fillalpha="1"
zorder="52" renderer="css3d"
>
<point ath="0.509373959366485" atv="0.139393146032196"/>
<point ath="0.42247045800479555" atv="0.28675667144488126"/>
<point ath="0.6461986575739616" atv="0.3201966153894537"/>
<point ath="0.6781858749884577" atv="0.21891746508374973"/>
</hotspot>
<hotspot hotspotId="35970" bordercolor="0xffffff" fillcolor="0x0091dc"
fillalpha="1" zorder="7"
renderer="css3d"
>
<point ath="0.6336030611278896" atv="0.17960525092339324"/>
<point ath="0.6237252371832879" atv="0.29252322819140525"/>
<point ath="0.7273597689305464" atv="0.3015882040746262"/>
<point ath="0.7372365204741894" atv="0.18867081825477958"/>
</hotspot>
</krpano>
Display More