目前,我正在使用Google Earth插件代码。目前,我正在尝试根据某些文本框的内容移动相机。这是我目前拥有的代码。

var ge;

google.load("earth", "1");

function init() {
  google.earth.createInstance('map3d', initCallback, failureCallback);
//create boxes
  addSampleUIHtml(
    '<input id="Altitude" type="text" value="500000"/>');
  addSampleUIHtml(
    '<input id="Longitude" type="text" value="2"/>');
  addSampleUIHtml(
    '<input id="Latitude" type="text" value="42"/>');
  addSampleUIHtml(
    '<input id="Heading" type="text" value="0"/>');
  addSampleUIHtml(
    '<input id="Tilt" type="text" value="0"/>');
  addSampleUIHtml(
    '<input id="Roll" type="text" value="0"/>');
  addSampleButton('Move the camera', buttonClick);
}

function initCallback(instance) {
  ge = instance;
  ge.getWindow().setVisibility(true);

  // just for debugging purposes
  document.getElementById('installed-plugin-version').innerHTML =
    ge.getPluginVersion().toString();
}

function failureCallback(errorCode) {
}

function buttonClick() {

  var AltitudeInBox=document.getElementById('Altitude').value

  var CameraAt= ge.getView().copyAsCamera(ge.ALTITUDE_ABSOLUTE);
  CameraAt.set   (  41.383, // latitude +-90
                               2.183 , // longitude +-180
                               AltitudeInBox, // altitude (m)
                               ge.ALTITUDE_ABSOLUTE, // reference altitude mode
                               0,  //heading Direction (that is, North, South, East, West), in degrees. Default=0 (North). Values range from 0 to 360 degrees
                               0, //Tilt 0 to 360 degrees.
                               0 //Rotation, in degrees around the Z axis. -180 to +180 degrees.

  ge.getView().setAbstractView(CameraAt)
}


当我将变量AltitudeInBox定义为Altitude框的内容时,英勇传递给它。我用了警报功能(alert(AltitudeInBox);),但是我将变量AltitudeInBox传递为CameraAt.set函数的参数时,我没有得到任何结果。
我怀疑变量AltitudeInBox被分配为图表而不是数字,但不知道如何更改它。
先感谢您。

最佳答案

好吧,我找到了解决方案。这是一个初学者的错误。以下语句:

 var AltitudeInBox=document.getElementById('Altitude').value


将“海拔高度”框的内容分配为图表变量,但是以下代码需要一个数字

   CameraAt.set   (  41.383, // latitude +-90
                               2.183 , // longitude +-180
                               AltitudeInBox, // altitude (m)
                               ge.ALTITUDE_ABSOLUTE, // reference altitude mode
                               0,  //heading Direction (that is, North, South, East,West), in degrees. Default=0 (North). Values range from 0 to 360 degrees
                               0, //Tilt 0 to 360 degrees.
                               0 //Rotation, in degrees around the Z axis. -180 to +180degrees.


解决方案是像这样使用parseFloat()或parseInt()。

   CameraAt.set   (  parseFloat(document.getElementById('Latitude').value),
                     parseFloat(document.getElementById('Longitude').value) ,
                     parseFloat(document.getElementById('Altitude').value),
                     ge.ALTITUDE_ABSOLUTE, //altitude mode
                     parseFloat(document.getElementById('Heading').value),
                     parseFloat(document.getElementById('Tilt').value),
                     parseFloat(document.getElementById('Roll').value)    )

10-06 07:43