Cesium.js - failed to obtain image tile X:1 Y:0 Level: 1

Hi all,

Sorry for the basic questions I have had so far, and thank you very much for being supportive. I am still trying to get to know Cesium. This time I have a different problem. I am trying out the layers tutorial with jetty version 8. The files I used are from full cesium zip. Below are the errors I encountered:

“An error occurred in “”:” Cesium.js:407
19:37:39.527 “Failed to obtain image tile X: 1 Y: 0 Level: 1.” Cesium.js:407
19:37:39.528 “An error occurred in “”:” Cesium.js:407
19:37:39.528 “Failed to obtain image tile X: 0 Y: 1 Level: 1.” Cesium.js:407
19:37:39.562 “An error occurred in “”:” Cesium.js:407
19:37:39.562 “Failed to obtain image tile X: 1 Y: 1 Level: 1.” Cesium.js:407
19:37:39.563 “An error occurred in “”:” Cesium.js:407
19:37:39.564 “Failed to obtain image tile X: 0 Y: 0 Level: 1.” Cesium.js:407

Below is the entire html file.

Hello World! @import url(Build/Cesium/Widgets/widgets.css);

#cesiumContainer {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
margin: 0;
overflow: hidden;
padding: 0;
font-family: sans-serif;
}

body {
padding: 0;
margin: 0;
overflow: hidden;
}

Have you get this solved? I get the same error when I try to add a browse image from my geoserver to Cesium Map. I have a post onMar. 3. The title is ;

“Display GeoTiff browse images to Cesium Map”.

No, I haven’t. But I noticed that when I run this with Jetty as local web server, I got the error. However, if I run it without the local webserver (just run the html file locally), it’s fine.

Sorry to reply to an old thread, but Google brought me here. I ran into this problem today, and the solution was CORS: I posted a description over at Stack Overflow [1].

I didn't try the CORS solution for a while because the non-CORS server was logging 200 success for Cesium's requests (I thought CORS infractions were forbidden by the browser from ever being transmitted to the server). But switching to CORS was the answer.

[1] http://stackoverflow.com/q/28946739/500207