No globe in workshop tutorial master

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?

Hi there,

You should generate your own Bing Map key here: https://www.bingmapsportal.com/

That’s not very clear in the tutorial, we plan to update it soon.

Thanks,

Gabby

I found the solution by accident indeed about the same time you posted this reply. Thx!