How to hide Today button?

image
Can i hide this button on javascript ?

Hi @Pubodin-T Welcome in Cesium Community!

You can hide clock button by modifying it’s style property either from javascript code or from css style tag.

Javascript:

document.getElementById("animation_pathClock").style.display= "none";
document.querySelector("#animation_pathWingButton.cesium-animation-buttonMain").style.display= "none";

Css:

#animation_pathWingButton.cesium-animation-buttonMain,#animation_pathClock{
    display: none;
  }
  • Regards

Thanks a lot for the Answer. @Jacky Finally , I did it.