Import error in CesiumJS and webpack tutorial

Hi all,

Not sure if it’s the right place to report this kind of issue but there’s an incorrect import in:

The code example:

import Color from 'cesium/core/Color';
var color = Color.fromRandom();

Should be:

import Color from 'cesium/Core/Color';
var color = Color.fromRandom();

(Core instead of core)

1 Like

Thanks for reporting @frederic.junod1! Yes this is the best place to report these kinds of issues. We’ll update the tutorial to fix that.