gpt4 book ai didi

android - 从 Android 应用程序调用 Google map 应用程序以获取行车路线

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:44:14 24 4
gpt4 key购买 nike


我需要使用外部谷歌地图应用程序显示行车方向我找到了这个链接 http://developer.android.com/guide/appendix/g-app-intents.html , 但下面将 map 应用程序打开到给定位置

    Uri uri = Uri.parse("geo:13.070984,80.253639");
Intent in = new Intent(Intent.ACTION_VIEW, uri);
startActivity(in);

我需要知道是否有任何方法可以通过两个地理位置来获取行车方向。

最佳答案

是的,如果您有源和目的地的纬度和经度,就很容易显示方向。看看下面的代码:

Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse("http://maps.google.com/maps?saddr="+latitude_source+","+longitude_source+"&daddr="+latitude_dest+","+longitude_dest));

startActivity(intent);

在哪里latitude_source=Latitude 您的来源longitude_source=Longitude 您的来源latitude_dest=纬度 您的目的地longitude_dest=你目的地的经度

只需将这些值替换为您的实际数据即可。.在某些特定事件上使用上面的代码。

希望对您有所帮助。

关于android - 从 Android 应用程序调用 Google map 应用程序以获取行车路线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5522349/

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