如何在Chrome中启动Google地球插件

时间:2013-01-08 13:26:07

标签: google-earth-plugin

我安装了Google地球插件,似乎工作正常。

我想要做的是打开一个KML文件(从Android上的MyTracks导出)。

但是,我找不到打开KML文件或启动GE插件的选项。

这可能吗?

1 个答案:

答案 0 :(得分:0)

要启动插件,请查看Using the Google Earth Api中的“developer's guide”部分。

要加载KML文件,请查看以下文档https://developers.google.com/earth/documentation/kml

它提供了如何fetchKml and parseKml以及链接到working example的示例。

var href = 'http://code.google.com/'
               + 'apis/earth/documentation/samples/kml_example.kml';

google.earth.fetchKml(ge, href, function(kmlObject) {
  if (kmlObject) {
    ge.getFeatures().appendChild(kmlObject);
  }
});

您还可以再次使用KmlNetworkLinkload the data将文档链接至working example

var link = ge.createLink('');
var href = 'http://code.google.com/'
           + 'apis/earth/documentation/samples/kml_example.kml'
link.setHref(href);

var networkLink = ge.createNetworkLink('');
networkLink.set(link, true, true); // Sets the link, refreshVisibility, and flyToView

ge.getFeatures().appendChild(networkLink);