网页加载时,有没有办法让Google地球插件执行以下操作?
我可以单独执行上面的#1或#2,但我无法弄清楚如何在网页加载时发生这两种情况。
答案 0 :(得分:0)
您只需使用fetchKml中的google.earth namespace方法加载这两个文件即可。然后,您可以提供逻辑来处理显示数据并在回调参数中输入游览。
要玩游览,您必须走Kml DOM寻找KmlTour对象,以便您可以使用GETourPlayer打开它。要执行此操作,您可以使用earth utility library,也可以使用kmldomwalk.js脚本。
类似下面的java脚本应该可以工作(尽管它是在这里编写的,未经测试)。
<script src="//www.google.com/jsapi/"></script>
<script src="//earth-api-samples.googlecode.com/svn/trunk/lib/kmldomwalk.js"></script>
<script>
google.load("earth", "1");
var ge = null;
var kml1= '//www.ppacg.org/tours/logo.html';
var kml2= '//www.ppacg.org/tours/tabview.html?project=08-37';
var tour = null; // so you can call pause, stop, etc globally...
function init() {
// presumes you have a div with the id 'map3d'
google.earth.createInstance("map3d", initCallback, function(e){alert(e);});
}
function initCallback(object) {
ge = object;
ge.getWindow().setVisibility(true);
// load your data
google.earth.fetchKml(ge, kml1, fetchKmlCallback);
google.earth.fetchKml(ge, kml2 , fetchKmlCallback);
}
function fetchKmlCallback(object) {
if (object) {
// add the features to the plugin
ge.getFeatures().appendChild(object);
// Walk the DOM looking for a KmlTour
walkKmlDom(object, function() {
if (this.getType() == 'KmlTour') {
tour = this;
ge.getTourPlayer().setTour(tour); // enter the tour
return false; // stop the DOM walk here.
}
});
} else {
setTimeout(function() {
alert('Bad or null KML.');
}, 0);
}
}
google.setOnLoadCallback(init);
</script>
如果您遇到问题,请查看使用fetchkml和playing tours的这些示例。