Hello,
I want to achieve such a function on a web page viewed on a phone: Make the globe still, and then use LEFT_DOWN to imitate a finger down and MOUSE_MOVE event to imitate the moving of finger. During the process, pick the start position and the floating position to draw a rectangle on the globe. But the problem is when I move my finger, the globe will also rotate following my finger, how can I keep the globe still, does anybody have advise?
Thank you very much!
hey everybody, I figured it out. I use
scene.screenSpaceCameraController.enableRotate=false
scene.screenSpaceCameraController.enableZoom=false
to prevent the globe rotating after my finger’s move.