are there any libraries or classes out there to show a 360 degree panorama on the iphone?

i found this here: http://code.google.com/p/panoramagl/ but its not up to date and only for old versions of ios.

i'm thankfull for any link that helps me to create a 360 degree panorama view on ios.

thanks!

link|improve this question

It's not only for old versions of ios. It's easy to launch it under ios 4. what are the problems concerning ios 4 capability do you have? – NR4TR Oct 5 '10 at 6:10
Looks like they have added support for iOS 5 (at least they have tested in it) – tigermain Mar 13 at 9:00
feedback

4 Answers

up vote 4 down vote accepted

I've recently found KRPano and since it's not listed here..

link|improve this answer
poorly its impossible to view the demo in iphone simulator (local) dl.getdropbox.com/u/80699/… – choise Oct 25 '10 at 14:03
You need a license as said here: krpano.com/iphone/#howtouseit – microspino Oct 25 '10 at 14:21
shure, but first i would like to try before i buy ;) – choise Oct 25 '10 at 15:25
i ended up using this. works the way i want. even if its a bit tricky – choise Apr 12 '11 at 10:30
1  
does KRPano worked in UIWebView ? can you tell us how ? – Scar Dec 30 '11 at 13:03
show 1 more comment
feedback

The VR5 pano viewer at http://www.vrhabitat.com/#vr5 should do what you need.

When you download it, you can test it out by importing the vr5_script folder into your Xcode project, making sure to check the "Create folder references for any added folders" option, then load it into the webview:

[webView loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:[
     [NSBundle mainBundle] pathForResource:@"index" ofType:@"html"
     inDirectory:@"vr5_script"]isDirectory:NO]]];

I just gave it a try and it seems to work quite well. Please consider donating to the author if you use it for commercial use (I am not affiliated with the author).

link|improve this answer
yeah i tryed that, but its not very smooth, without smooth scrolling and all of that. also it does work in mobile safari, but in a uiwebview there are some problems with multitouch actions – choise Oct 1 '10 at 17:45
feedback

Apple's "HTML5" gallery includes 360° panorama implemented using proprietary CSS and JS extensions:

http://www.apple.com/html5/showcase/vr/

Works very well in all Apple browsers, including Mobile Safari, but it's designed not to work in other browsers.

link|improve this answer
Are you sure you mean "designed not to" which implies they put effort into breaking it in Firefox, or "not designed to" which implies they just didn't bother making it work? – Tom H Oct 7 '10 at 16:40
Thanks, I've just looking at this for Mobile Safari. – Leandro Ardissone Nov 9 '10 at 17:56
feedback

I am currently building a similar system, and had as much luck as you did with this. Ended up using UIScrollView to provide a panorama-like effect, even though I was not able to wrap it around entirely successfully. I used the WWDC video from session 104 (2010) to help me optimize large image loading.

OpenGL ES may be a more elegant solution if you have the time/skill (I've only dabbled in OpenGL), but I certainly had no luck finding a panorama library anywhere (except for the deprecated panoramagl). It's certainly a doozy.

link|improve this answer
i have not the opengl es skills ;) as always, deadline is coming fast. i also tried using a scrollview but ended up with no good solution – choise Sep 28 '10 at 10:31
Wish you good luck buddy! Deadlines suck! – Raj Sep 29 '10 at 5:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.