Cordova and stk-terrain/world not playing well

Whenever I add the following code in the Cesium.viewer constructor the globe is not visible (I see only stars):

terrainProvider : new Cesium.CesiumTerrainProvider({
  url : '//assets.agi.com/stk-terrain/world'
})

Do you have any idea what's happening and how it can be fixed?

Hello,

Currently the Bing Maps Imagery is not loading, check out this forum post for more information. If you change the imagery provider, or get a key from Bing (more information in that forum post), you will be able to see the imagery along with the terrain. Here is an example:

var viewer = new Cesium.Viewer('cesiumContainer', {
    imageryProvider : new Cesium.ArcGisMapServerImageryProvider({
        url : '//server.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer'
    }),
    terrainProvider : new Cesium.CesiumTerrainProvider({
        url : '//assets.agi.com/stk-terrain/world'
    }),
    baseLayerPicker : false
});

Thanks!

Tom Ped