I want to eliminate the menu at the bottom right
Is there any good way?
You can do it with the menuVisible
property: GitHub - shapespark/shapespark-viewer-api: JavaScript API for interacting with the Shapespark 3D scene.
I want to erase the part circled in blue.
Is it possible?
var viewer = WALK.getViewer();
viewer.menuVisible = false;
Add the following style to the body-end.html:
<style>
#menu-bar {
display: none;
}
</style>