Dear visitor, welcome to krpano.com Forum. If this is your first visit here, please read the Help. It explains in detail how this page works. To use all features of this page, you should consider registering. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.
You could avoid using multires for the iPhone, using just the <mobile> images would also reduce the memory need...
Quoted
I have alot riding on this so I would do just about anything to salvage this sale!
![]() |
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
<image type="CUBE" multires="true" tilesize="512" progressive="false" devices="!iphone"> <level tiledimagewidth="3402" tiledimageheight="3402"> <cube url="Cili_Ikat_Hand_Weaving_Mill_in_Bali.tiles/mres_%s/l3/%v/l3_%s_%v_%h.jpg" /> </level> <level tiledimagewidth="1702" tiledimageheight="1702"> <cube url="Cili_Ikat_Hand_Weaving_Mill_in_Bali.tiles/mres_%s/l2/%v/l2_%s_%v_%h.jpg" /> </level> <level tiledimagewidth="852" tiledimageheight="852"> <cube url="Cili_Ikat_Hand_Weaving_Mill_in_Bali.tiles/mres_%s/l1/%v/l1_%s_%v_%h.jpg" /> </level> <mobile> <cube url="Cili_Ikat_Hand_Weaving_Mill_in_Bali.tiles/mobile_%s.jpg" /> </mobile> </image> <image devices="iphone"> <cube url="Cili_Ikat_Hand_Weaving_Mill_in_Bali.tiles/mobile_%s.jpg" /> </image> |
It ran for a bit but eventually crashed. In hindsight maybe I should have cleared my cache but I don't remember if I did. Not sure if that had anything to do with it.
Quoted
change :
<image type="CUBE" devices="androidstock+!webgl">
by
<image type="CUBE" devices="mobile">
Clearing the browser cache is pretty important when changing files, especially on iOS - otherwise the change that you still viewing the old files is very high.maybe I should have cleared my cache
It's difficult to completely avoid crashes when the browser and the OS itself have bugs!I can't afford even a single crash as it cheapens the product and it makes me look very bad.
![]() |
Source code |
1 2 3 4 5 6 7 |
<script type="text/javascript"> if ( (navigator.userAgent.match(/iPhone|Android|webOS|iPod|BlackBerry|IEMobile|Opera Mini/i))) { window.location = "mobile/virtual_tour.html"; } </script> |
![]() |
Source code |
1 2 3 4 5 6 7 |
<script type="text/javascript"> if ( (navigator.userAgent.match(/iPhone|Android|webOS|iPod|BlackBerry|IEMobile|Opera Mini/i))) { window.location = "mobile/virtual_tour.html"; } else if ((navigator.userAgent.match(/iPad/i))) { window.location = "ipad/virtual_tour.html"; } </script> |