gpt4 book ai didi

android - 开始谷歌地图 Intent

转载 作者:行者123 更新时间:2023-11-29 15:19:27 25 4
gpt4 key购买 nike

嗨,我想制作一个按钮,该按钮将启动谷歌地图 Intent 我的当前位置和目的地位置

如何让谷歌地图自动检测我的位置和目的地的经度和纬度?我把 longi 和 lat 放在哪里?

我要那张 map 直接画出目的地的方向

     final Intent intent = new Intent(Intent.ACTION_VIEW,
Uri.parse("http://maps.google.com/maps?"
+ "saddr="+ current_lat+","+current_longi + "&daddr="+dest_address ));

intent.setClassName("com.google.android.apps.maps","com.google.android.maps.MapsActivity");

startActivity(intent);

alr 试过这段代码但没有用

最佳答案

尝试将其中之一与 View intent 结合使用:

geo:latitude,longitude
geo:latitude,longitude?z=zoom
geo:0,0?q=my+street+address
geo:0,0?q=business+near+city

类似于:

Uri uri = Uri.parse(<ONE OF THE ABOVE STRINGS>);
Intent intent = new Intent(android.content.Intent.ACTION_VIEW, uri);
startActivity(intent);

关于android - 开始谷歌地图 Intent ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19980613/

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