answere by Klaus,
Hi,
you are linking directly to the Flash SWF file:
http://www.virtualtuur.com/Lobbes_2/P/vi…no=../nl/2.xml&
and there is no Flashplayer on the iDevices, so that can't work,
to get it working you need to link to a HTML where either
the krpano Flash or the krpano Javascript viewer will be embedded,
e.g. do that by using the default krpano html files (with the
swfkrpano.js script)
for passing the parameters from the url to the krpano viewer,
there is the passQueryParameters() function:
http://krpano.com/docu/swfkrpanojs/#passqueryparameters
about hotspots - on the Flash viewer it would be possible by:
hotspot.visible=false
but on the Javascript viewer there this doesn't work yet (but soon),
there you would set all hotspots to invisible, either by an action
that loops all hotspots or manually by setting each hotspots,
e.g. here an example action that loops a hotspots and sets them
visible or not:
<action name="showhotspots">
if(%2 != NEXT, set(i,0));
if(i LT hotspot.count,
set(hotspot[get(i)].visible,%1);
inc(i);
showhotspots(%1,NEXT);
);
</action>
to use it:
showhotspots(false);
or
showhotspots(true);
best regards,
Klaus
Tuur