I need to display 360 images on iOS devices.
I chose GoogleVR
to do this (https://developers.google.com/vr/) and I'm using the GVRPanoramaView
. (https://developers.google.com/vr/ios/vr-view)
_panoView = [[GVRPanoramaView alloc] initWithFrame:self.view.bounds];
[_panoView loadImage:[UIImage imageNamed:@"VRTest.jpg"]];
[self.view addSubview:_panoView];
It works well, the image is displayed and I'm able to see all around using the device gyroscope.
I'd like to be able to move across the image using pan gesture but I can't find a way to achieve this using the given SDK.
Is it even possible ? I did not find anything in the documentation saying it's not ... but didn't find any solution either ...