I'm working with this amazing experiment, WebGL Globe, and it's really awesome.
I've changed some functions to play and adapt them to what I want. One is function render.
ORIGINAL:
function render() {
zoom(curZoomSpeed);
rotation.x += (target.x - rotation.x) * 0.1;
rotation.y += (target.y - rotation.y) * 0.1;
distance += (distanceTarget - distance) * 0.3;
camera.position.x = distance * Math.sin(rotation.x) * Math.cos(rotation.y);
camera.position.y = distance * Math.sin(rotation.y);
camera.position.z = distance * Math.cos(rotation.x) * Math.cos(rotation.y);
camera.lookAt(mesh.position);
renderer.render(scene, camera);
}
MODIFIED:
function render() {
var timer = Date.now() * 0.0001;
zoom(curZoomSpeed);
rotation.x += (target.x - rotation.x) * 0.1;
rotation.y += (target.y - rotation.y) * 0.1;
distance += (distanceTarget - distance) * 0.3;
camera.position.x = (Math.cos( timer ) * 960);
camera.position.y = distance * Math.sin(rotation.y);
camera.position.z = (Math.sin( timer ) * 960) ;
camera.lookAt( scene.position );
renderer.render(scene, camera);
}
Now my globe auto-rotate perfectly, but I can't drag the globe and rotate it with my mouse in Axes X and Z, only Y. How can I use this auto-rotate function and don't lose rotation control with the mouse in AXES X and Z?
What you can do is put the code to rotate the globe manually and then put in your additions with some modifications.