瀏覽代碼

Don't override pitch / yaw / hfov from GPano XML.

Regression in 14208198aa.
pull/1238/head
Matthew Petroff 5 月之前
父節點
當前提交
011497a7bd
共有 1 個文件被更改,包括 4 次插入4 次删除
  1. +4
    -4
      src/js/pannellum.js

+ 4
- 4
src/js/pannellum.js 查看文件

@@ -629,11 +629,11 @@ function parseGPanoXMP(image, url) {
config.horizonRoll = xmp.horizonRoll;
}
if (xmp.pitch != null && specifiedPhotoSphereExcludes.indexOf('pitch') < 0)
if (xmp.pitch !== null && specifiedPhotoSphereExcludes.indexOf('pitch') < 0)
config.pitch = xmp.pitch;
if (xmp.yaw != null && specifiedPhotoSphereExcludes.indexOf('yaw') < 0)
if (xmp.yaw !== null && specifiedPhotoSphereExcludes.indexOf('yaw') < 0)
config.yaw = xmp.yaw;
if (xmp.hfov != null && specifiedPhotoSphereExcludes.indexOf('hfov') < 0)
if (xmp.hfov !== null && specifiedPhotoSphereExcludes.indexOf('hfov') < 0)
config.hfov = xmp.hfov;
}
}
@@ -2111,7 +2111,7 @@ function renderHotSpots() {
function mergeConfig(sceneId) {
config = {};
var k, s;
var photoSphereExcludes = ['haov', 'vaov', 'vOffset', 'northOffset', 'horizonPitch', 'horizonRoll'];
var photoSphereExcludes = ['haov', 'vaov', 'vOffset', 'northOffset', 'horizonPitch', 'horizonRoll', 'pitch', 'yaw', 'hfov'];
specifiedPhotoSphereExcludes = [];
// Merge default config


Loading…
取消
儲存