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.
<!DOCTYPE html>
<html lang="en">
<head>
<title>Hello World!</title>
<script src="Build/Cesium/Cesium.js"></script>
<style>
@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;
}
</style>
blackMarble.alpha = 0.5;
blackMarble.brightness = 2.0;
layers.addImageryProvider(new Cesium.SingleTileImageryProvider({
url : 'Build/Cesium/images/Cesium_Logo_overlay.png',
extent : new Cesium.Extent(
Cesium.Math.toRadians(-75.0),
Cesium.Math.toRadians(28.0),
Cesium.Math.toRadians(-67.0),
Cesium.Math.toRadians(29.75))
}));
</script>
</body>
</html>