gpt4 book ai didi

android - 将 kml map 上传到我的 android 应用程序

转载 作者:行者123 更新时间:2023-11-30 04:16:43 25 4
gpt4 key购买 nike

我试图找到如何加载 kml 文件,我发现我可以使用:

    Intent mapIntent = new Intent(Intent.ACTION_VIEW); 
Uri uri1 = Uri.parse("geo:0,0?q=http://code.google.com/apis/kml/
documentation/KML_Samples.kml");
mapIntent.setData(uri1);
startActivity(Intent.createChooser(mapIntent, "Sample"));

有没有其他方法可以让我从我的电脑本地上传 kml 文件,而不必将其上传到网站,然后使用它..因为我正在开发应用程序,通常其他用户无法访问他们的 kml 没有链接的用户名和密码

如果有人能提供帮助,我将不胜感激。

最佳答案

您可以在 googlecode 中创建一个帐户并上传 kml 文件,这样它就会在 Internet 上并且每个人都可以看到它

public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Uri uri = Uri.parse("geo:0,0?q=http://miruta.googlecode.com/files/miruta.kml");
Intent mapIntent = new Intent(Intent.ACTION_VIEW, uri);
mapIntent.setData(uri);
startActivity(Intent.createChooser(mapIntent, "Sample Map"));
}

关于android - 将 kml map 上传到我的 android 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9862891/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com