1

Google Earth プラグインをインストールしましたが、問題なく動作しているようです。

私がやりたいのは、KML ファイル (Android の MyTracks からエクスポート) を開くことです。

しかし、KML ファイルを開いたり、GE プラグインを起動したりするオプションが見つかりません。

これは可能ですか?

4

1 に答える 1

0

プラグインを起動するには、デベロッパーガイドの「 GoogleEarthApiの使用」セクションをご覧ください。

KMLファイルの読み込みについては、次のドキュメントをご覧くださいhttps://developers.google.com/earth/documentation/kml

これは、fetchKmlとparseKmlの方法の例と、実際のへのリンクを示しています。

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);
  }
});

を使用してデータを再度ロードすることもできますKmlNetworkLinkドキュメントはこの実例にリンクしています。

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);
于 2013-01-08T16:51:34.573 に答える