gpt4 book ai didi

android - 使用 geo : intent to display a map at a specified location and zoom level 显示多个标记

转载 作者:行者123 更新时间:2023-11-30 04:57:33 28 4
gpt4 key购买 nike

我想使用 geo: Intent 显示一些标记,以在指定位置和缩放级别显示 map 。但我不知道如何在这里添加我的标记?有人可以帮我解决这个问题吗?

// Creates an Intent that will load a map of San Francisco
Uri gmmIntentUri = Uri.parse("geo:37.7749,-122.4194");
Intent mapIntent = new Intent(Intent.ACTION_VIEW, gmmIntentUri);
mapIntent.setPackage("com.google.android.apps.maps");
startActivity(mapIntent);

感谢您的建议。

最佳答案

试试下面的例子:

Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse("geo:37.7749,-122.4194?q=37.7749,-122.4194 (San Francisco)"));
// the following line should be used if you want use only Google maps
intent.setComponent(new ComponentName("com.google.android.apps.maps", "com.google.android.maps.MapsActivity"));
startActivity(intent);

关于android - 使用 geo : intent to display a map at a specified location and zoom level 显示多个标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58873062/

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