Hi,
sorry, this is currently not possible direct, but it will soon,
but via html it should be already possible:
one krpano.swf with the pano,
and one krpano.swf only with the maps plugin,
in the
1.0.8 beta 7 version there is the new "onviewchange" event,
this can be used to call a javascript function which updates the view/radar in the other plugin,
e.g.
pano XML:
|
Source code
|
1
|
<events onviewchange="js( pano2map() );" />
|
HTML/JS:
|
Source code
|
1
2
3
4
5
6
7
|
function pano2map()
{
var pano = document.getElementById("krpanoPanoDiv");
var map = document.getElementById("krpanoMapDiv");
map.set("view.hlookat", pano.get("view.hlookat") );
}
|
the same method can be used for onclick events in the map
to load other panos in the pano element,
best regards,
Klaus