Hi I am new to javascript and cesium js.
I wanted to try this example on my local server and I found that the function “start” never called even though scene.clampToHeightSupported is true. I don’t know what causes this. Does anyone have the same experience?
Best
Hiya,
Your invocation of the function isn’t set up right where you add the eventListener (there’s no symbol or reference ‘start’, just a function. Try this instead;
addEventListener(function(){start()})
Cheers,
Alex