我試圖在從Azure提供的簡單網頁中嵌入VR視圖。下面是操作的頁面: https://beaker.azurewebsites.net/360/Google VR錯誤:無法從
正如你可以看到我得到一個Render: unable to load texture from "//beaker.azurewebsites.net/360/images/Zest.jpg"
的VR視圖工作正常,由谷歌主辦的潛水圖像。 storage.googleapis.com/vrview/examples/coral.jpg,但關於如何將我的映像託管在Azure中並不適用於VR視圖。正如您可以在珊瑚VR視圖下方看到Zest.jpg圖片一樣。
這裏是我的html:
<html>
<body>
<h1>VR View examples</h1>
<iframe width="100%" height="300px" allowfullscreen frameborder="0" src="//storage.googleapis.com/vrview/2.0/index.html?image=//beaker.azurewebsites.net/360/images/Zest.jpg&is_stereo=true"></iframe>
<iframe width="100%" height="300px" allowfullscreen frameborder="0" src="//storage.googleapis.com/vrview/2.0/index.html?image=//storage.googleapis.com/vrview/examples/coral.jpg&is_stereo=true"></iframe>
<img src="/360/images/Zest.jpg"/>
</body>
</html>
我嘗試添加CORS的googleapis.com,但是這似乎並沒有幫助的。
我不知道爲什麼它不工作...任何想法,將不勝感激。
我看到了這些其他職位: VR View - Render: Unable to load Texture from image.jpg
Google Vr - Unable to load texture
但這些都像不同的問題。