我正在使用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º 图像完美运行,但热点显示失真,如下图所示。它应该是一个绿色圆圈。
我没有 OpenGL 方面的专业知识,所以我对正在发生的事情以及如何修复它有点迷茫。
任何想法或任何其他有效的图书馆?