我遇到的问题与this guy非常相似,但唯一的问题是我在一个封闭的网络上而且我正在使用企业库earth_plugin_loader.js
<script type="[MyServer]/earth_api/earth_plugin_loader.js">
<script type="text/javascript">
//google.load("earth", "1"); < Don't have that or the google loader API
var ge = null;
function initCallback(object) {
ge = object;
ge.getWindow().setVisibility(true);
}
function failureCallback(object) {
}
$(document).ready(function() {
google.earth.createInstance("map3d", initCallback, failureCallback);
});
要加载api我只需将脚本添加到我的标题中,无论如何我都知道api何时完成加载?