我正在这样做:
google.earth.fetchKml(ge, slopehref, function(kmlObject){
if (kmlObject){
ge.getFeatures().appendChild(kmlObject);
// GroundOverlay's still not rendered
}
});
所以我知道 kml 文件何时加载,但加载 GroundOverlays 需要几秒钟。我想在 GroundOverlays 渲染后得到回调。我一直在寻找可能在网络活动停止时触发的 google.earth.addEventListener eventid,但我找不到任何相关信息。