Threejs: Rotate sphere(globe) to another point(city) on the sphere itself
问题 I'm building a globe(sphere geometry) with set of predefined locations on geo-mapped and drawn as point(sphere geometry). I would like to focus(moving one location to another) those locations by rotating globe along y-axis. I tried the following code, seems not working for all locations. location.geometry.computeBoundingBox(); var position = new THREE.Vector3(); position.subVectors( location.geometry.boundingBox.max, location.geometry.boundingBox.min ); position.multiplyScalar( 0.20 );