iOS PanoramaGL热点无法正确显示

时间:2017-04-12 12:46:00

标签: ios opengl-es glkit 360-panorama-viewer

我正在使用PanoramaGL在车内显示360张照片,我需要添加一些热点。

我完全喜欢他们的例子:

UIImage *pano = [UIImage imageNamed:@"inside360_2048"];
NSObject<PLIPanorama> *panorama = [PLSphericalPanorama panorama];
[(PLSphericalPanorama *)panorama setImage:[PLImage imageWithCGImage:pano.CGImage]];

UIImage *hs = [UIImage imageNamed:@"dashboard_hotspot"];
PLTexture *hotspotTexture = [PLTexture textureWithImage:[PLImage imageWithCGImage:hs.CGImage]];
PLHotspot *hotspot = [PLHotspot hotspotWithId:1000 texture:hotspotTexture atv:0.0f ath:0.0f width:0.08f height:0.08f];
[panorama addHotspot:hotspot];

// Set panorama
[self.plView setPanorama:panorama];

360º图像效果很好,但热点显示如下图所示扭曲。它应该是一个绿色圆圈。

enter image description here

我没有OpenGL的专业知识,所以我对正在发生的事情以及如何修复它有点迷茫。

任何想法或任何其他有用的库?

1 个答案:

答案 0 :(得分:0)

我放弃了尝试使用这个库。 相反,我在网络视图中使用Pannellum。它工作得很好。