Side by side Flash panos

Q&A about the latest versions
Post Reply
ktshasta
Posts: 54
Joined: Fri Sep 25, 2009 8:14 pm

Hi, I did get some help from Thomas on getting the two side by side pans to scroll in synchronization. They could be a little smoother, but usable for now. I started with the basic info given on this page: http://ggnome.com/wiki/Synchronizing%20Panoramas

Thomas suggested changing the code to this:

// syncronize both panoramas
var lastPan,lastTilt,lastFov;
function syncPanos() {
try {
var panoSrc=pano_left;
var panoDst=pano_right;
if ((lastPan!=pano_right.getPan()) ||
(lastTilt!=pano_right.getTilt()) ||
(lastFov!=pano_right.getFov())) {
panoSrc=pano_right;
panoDst=pano_left;

}
lastPan=panoSrc.getPan();
lastTilt=panoSrc.getTilt();
lastFov=panoSrc.getFov();
panoDst.setPan(lastPan);
panoDst.setTilt(lastTilt);
panoDst.setFov(lastFov);
} catch(e) {}
}

And that did fix the synchro problem. The pan you are not scrolling on is still a little jerky, but usable.

Here are the beginnings of my examples:
http://cift.pair.com/shasta/ICL/Owyhee/ ... ardt8.html
http://cift.pair.com/shasta/ICL/Owyhee/ ... ardt7.html

Now to tackle the HTML 5 output for mobile devices.

kt
User avatar
360Texas
Moderator
Posts: 3684
Joined: Sat Sep 09, 2006 6:06 pm
Location: Fort Worth, Texas USA
Contact:

rotates quite smoothly now. Now we see the end webpage that you use.

Suggestions:
The right panorama appears under exposed.
Looks like a cloudy day but you might consider using your photo editor software to increase the exposure a little bit.

Might be interesting to add note indicating State and 'Nearest town is ______??
Dave
Pano2VR Forum Global Moderator
Image
Visit 360texas.com
User avatar
Hopki
Gnome
Posts: 13018
Joined: Thu Jan 10, 2008 3:16 pm
Location: Layer de la Haye, Essex UK
Contact:

The file sizes are still large!
Have you tried multi resolution for this?
Regards,
Hopki
Garden Gnome Support
If you send an e-mail to support please send a link to the forum post for reference.
support@ggnome.com
https://ggnome.com/wiki/documentation/
Post Reply