gpt4 book ai didi

android - Android 中的谷歌地图 API

转载 作者:行者123 更新时间:2023-11-29 14:51:56 24 4
gpt4 key购买 nike

我正在尝试实现一项功能,以便当用户在文本字段中输入地址并单击按钮时,该地址应复制到 Google map 的目的地字段中,并且用户位置应设置为“我的位置”(他当前的位置)。

最佳答案

您可以通过以下方式打开谷歌地图:

String CURRENT_LOCATION = "current_location_latitude, current_location_longitude";
String DESTINATION_LOCATION = "address_from_your_text_view";

Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse("http://maps.google.com/maps?saddr="+ CURRENT_LOCATION +" daddr="+DESTINATION_LOCATION));
startActivity(intent);

注意:您应该从 LocationManager 获取设备/用户当前位置

关于android - Android 中的谷歌地图 API,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15217831/

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