|
@@ -144,7 +144,7 @@
|
|
|
var geometry, material, mesh;
|
|
|
var target = new THREE.Vector3();
|
|
|
|
|
|
- var lon = 258.798, lat = -19.79;
|
|
|
+ var lon = 266.59, lat = -18.99;
|
|
|
var phi = 0, theta = 0;
|
|
|
|
|
|
var touchX, touchY;
|
|
@@ -158,7 +158,7 @@
|
|
|
* @type {THREE.PerspectiveCamera}
|
|
|
*/
|
|
|
camera = new THREE.PerspectiveCamera(
|
|
|
- 75, // 相机视角的夹角
|
|
|
+ 97.5, // 相机视角的夹角
|
|
|
window.innerWidth / window.innerHeight, // 相机画幅比
|
|
|
1, // 最近焦距
|
|
|
1000 // 最远焦距
|
|
@@ -292,6 +292,7 @@
|
|
|
*/
|
|
|
function onDocumentMouseWheel(event) {
|
|
|
camera.fov += event.deltaY * 0.05;
|
|
|
+ console.log("#debug#🚀 ~ file: index.html:295 ~ onDocumentMouseWheel ~ camera.fov:", camera.fov)
|
|
|
camera.updateProjectionMatrix();
|
|
|
}
|
|
|
|