Hosting the default images of Earth locally

Is it possible to host the standard images of the Earth that are used in the HelloWorld.html example locally? I’ve set up my own server and would like to be able to have the ability to have the HelloWorld.html example run on my computer without internet access. So far, whenever I disconnect myself from the internet, the HelloWorld example works except that the globe itself is blank. -Adam

Adam, Hello World is using Bing streaming imagery, in order to use the lower-resolution local imagery provided with Cesium, you can change the creation of the widget to the below code.

var cesiumWidget = new Cesium.CesiumWidget(‘cesiumContainer’, {

imageryProvider: new Cesium.TileMapServiceImageryProvider({

url : Cesium.buildModuleUrl(‘Assets/Textures/NaturalEarthII’)

})

});

I got it working. Thank you so much for taking the time to help me! -Adam