如何在Google地球3D驾驶模拟器中更改汽车模型?

时间:2012-11-20 09:51:13

标签: javascript kml google-earth-plugin

我正在尝试修改已提供的Google地球驾驶模拟器:

http://earth-api-samples.googlecode.com/svn/trunk/demos/drive-simulator/index.html

我试图用Ambulance文件替换提供的3D迷你卡车:

我上传的KMZ文件位于我的保管箱中:

是公开的。(我从以下网站下载: http://sketchup.google.com/3dwarehouse/details?mid=fe0ea451b7322763f0ebaf08776cf07&prevstart=0

我的代码是:

 window.google.earth.fetchKml(
      this.ge,
      DDSimulator.MODEL_URL,
      function(obj) {
          me.finishInitUI_(obj, opt_cb);
      });

它尝试调试脚本但没有结果,因为它没有抛出任何异常。模拟器根本不起作用。

请让我知道造成这个问题的可能原因。

谢谢

1 个答案:

答案 0 :(得分:0)

您需要修改它位于此处的javascript文件simulator.jshttp://earth-api-samples.googlecode.com/svn/trunk/demos/drive-simulator/simulator.js

然后将该文件保存到您的计算机上,然后打开它进行编辑。

设置MODEL_URL的行是

DDSimulator.MODEL_URL = 'http://earth-api-samples.googlecode.com/svn/trunk/' +
                        'demos/drive-simulator/smart.kmz';

要使用其他模型,只需更改字段的值即可指向您的文件。

DDSimulator.MODEL_URL = 'http://www.yourserver.com/yourfile.kmz';

显然,您需要保存此文件,例如my-simulator.js并将您的实施指向它。

<script type="text/javascript" src="my-simulator.js"></script>