Hello, Is there any way to add navigation controls for zoom in, zoom out, home button similar to cesium stories (using viewerOptions or any other class).

Hello, Is there any way to add navigation controls for zoom in, zoom out, home button similar to cesium stories (using viewerOptions or any other class).

<script>
Cesium.defineProperties = Object.defineProperties;
</script>
<script src="./viewerCesiumNavigationMixin.min.js"></script>
<script>
//Cesium.Ion.defaultAccessToken = "your access token";
const viewer = new Cesium.Viewer('cesiumContainer', {});
viewer.extend(Cesium.viewerCesiumNavigationMixin, {});
</script>
How to bind this plugin with Angular?