Equirectangular multilevel panorama is not showing in WebGL

  • I'm trying to show equirectangular panorama in html5. If entire image is used:

    Code
    <image type="SPHERE" hfov="360.00" vfov="120.489130" voffset="-29.755435" multires="true" tilesize="256" baseindex="0"> <sphere url="pano.jpg" /> </image>


    Everything seems ok. But when using levels only black screen is shown.

    Code
    <image type="SPHERE" hfov="360.00" vfov="120.489130" voffset="-29.755435" multires="true" tilesize="256" baseindex="0">		<level tiledimagewidth="17664" tiledimageheight="5912">
    			<sphere url="0/%h-%v.jpg" />		</level>		<level tiledimagewidth="8704" tiledimageheight="2913">			<sphere url="1/%h-%v.jpg" />		</level>		<level tiledimagewidth="4352" tiledimageheight="1457">			<sphere url="2/%h-%v.jpg" />		</level>		<level tiledimagewidth="2048" tiledimageheight="685">			<sphere url="3/%h-%v.jpg" />		</level>		<level aspreview="true" tiledimagewidth="512" tiledimageheight="171">			<sphere url="4/%h-%v.jpg" />		</level>	</image>


    Black sphere seems to rotate with mouse and rotate hotspots with it. But constraints from image tag are not used.

    krpano version 1.18.5
    all browswers on mac os x

    Cubic projection seems to be working with tiles in html5. But I guess it's because it's css3.

    Is this behaviour intended? Is this expected to be fixed any time soon?
    Also having problems inserting code with line breaks.

Participate now!

Don’t have an account yet? Register yourself now and be a part of our community!