Hello,
I have a issue with the globe not showing in the workshop tutorial installed localy
The Hello World app installed following the instructions here: https://cesiumjs.org/tutorials/cesium-up-and-running/ => shows the globe
Downloaded the github cesium-workshop-master, follow the instruction here: https://cesiumjs.org/tutorials/Cesium-Workshop/#setup => I can see the 3D tiles, the Drone path and the drone, but no globe
When is clear out app.js and just add the viewer:
(function () {
"use strict";
Cesium.BingMapsApi.defaultKey = 'AihaXS6TtE_olKOVdtkMenAMq1L5nDlnU69mRtNisz1vZavr1HhdqGRNkB2Bcqvs'; // For use with this application only
//////////////////////////////////////////////////////////////////////////
// Creating the Viewer
//////////////////////////////////////////////////////////////////////////
var viewer = new Cesium.Viewer('cesiumContainer');
var viewer = new Cesium.Viewer('cesiumContainer', {
scene3DOnly: true,
selectionIndicator: false,
baseLayerPicker: false
});
}());
I tried to comment out Cesium.BingMapsApi.defaultKey => no globe
Bottom line, I have no clue what is going on. Who can help me?