I added something very similar to this example to Angular three js component that is representing a 3D model of the contruction site: Very basic ViewCube
How to implement rotation of the whole scene by dragging and rotating the cube? Is there a Three js native way to do this simply or creating cube using native HTML and CSS and then adding mousedown, mousemove, mouseup listeners to handle rotation of the cube?
I tried something of this nature. Having a smaller scene postitioned absolute to overlay the main scene, then somehow I tried to map the camera and orbit controls of the main scene and the cube view scene. Do you have an idea how would that mapping occur?