6

我不知道您是否看过令人惊叹的 Mytrack 更新,但它允许将 kml 文件发送到 Google 地球应用程序并在 Google 应用程序中显示(当然,如果已安装)。

在此处输入图像描述

源代码在那里:http ://code.google.com/p/mytracks/source/browse/

但我找不到实现这一目标的方法。

我想我在这里找到了一些东西:http ://code.google.com/r/jshih-mytracks3/source/browse/MyTracks/src/com/google/android/apps/mytracks/io/file/SaveActivity.java?spec =svn5178eb75934b7f0c4c23ec26b7d79a0787de18b8&r=5178eb75934b7f0c4c23ec26b7d79a0787de18b8

else if (playTrack) {
        Intent intent = new Intent()
            .addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_NEW_TASK)
            .putExtra(GOOGLE_EARTH_TOUR_FEATURE_ID, KmlTrackWriter.TOUR_FEATURE_ID)
            .setClassName(GOOGLE_EARTH_PACKAGE, GOOGLE_EARTH_CLASS)
            .setDataAndType(Uri.fromFile(new File(savedPath)), GOOGLE_EARTH_KML_MIME_TYPE);
        startActivity(intent);

硬编码的方式给出了这个代码:

    Intent intent = new Intent()
            .addFlags(
                    Intent.FLAG_ACTIVITY_CLEAR_TOP
                            | Intent.FLAG_ACTIVITY_NEW_TASK)
            .putExtra("com.google.earth.EXTRA.tour_feature_id","tour")
            .setClassName("com.google.earth", "com.google.earth.EarthActivity")
            .setDataAndType(Uri.fromFile(new File("/sdcard/test.kml")),
                    "application/vnd.google-earth.kml+xml");
    startActivity(intent);

但是上面的代码只是简单地显示了与这段代码结果相同的路径:

 Intent mapIntent = new Intent(Intent.ACTION_VIEW); 
    Uri uri1 = Uri.parse("file:///sdcard/test.kml"); 
    mapIntent.setData(uri1); 
    startActivity(Intent.createChooser(mapIntent, "Sample")); 

我的目标是使用“播放”按钮获得相同的结果。

4

4 回答 4

6

您需要指定 KML 文件的 URIKML MIME 类型,如下所示。

File file = new File(Environment.getExternalStorageDirectory(), "sample_tour.kml");
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(file), "application/vnd.google-earth.kml+xml");
intent.putExtra("com.google.earth.EXTRA.tour_feature_id", "my_track");
startActivity(intent);

这目前没有记录,但我们正在寻求解决这个问题。

一定要使用而Intent::setDataAndType不是单独使用(它们各自覆盖另一个)。Intent::setDataIntent::setType

“my_track”是对您的地标 ID 的引用。Intent extra 会自动启动游览。

<Placemark id="my_track">
 <gx:Track>
  ...
 </gx:Track>
</Placemark>
于 2012-08-14T00:03:22.320 回答
3

是否可以使用链接而不是磁盘中的 kml?像这样的东西:

intent.setDataAndType(Uri.parse("http://sites.cyclingthealps.com/other/downloads/doc.kml"), "application/vnd.google-earth.kml+xml");

谢谢

于 2012-12-05T20:46:35.660 回答
2

如果您的目标是 Android N,则不再允许发送 file:// 意图。使用android.os.FileUriExposedException: file:///storage/emulated/0/test.txt 中的说明通过 Intent.getData() 暴露在应用之外,并添加Intent.FLAG_GRANT_READ_URI_PERMISSION标志。

于 2017-03-19T10:09:32.897 回答
0
File KML = new File("/sdcard/doc.kml");
Intent i = getPackageManager().getLaunchIntentForPackage("com.google.earth");
i.setDataAndType(Uri.fromFile(KML), "xml");
startActivity(i);

来源:http ://enladodelbien.blogspot.com/2015/06/kmlkmz-to-google-earth.html

于 2015-07-03T04:12:26.217 回答