gpt4 book ai didi

android - 在安卓中打开谷歌地图

转载 作者:行者123 更新时间:2023-11-30 02:21:09 24 4
gpt4 key购买 nike

我在这里打开带有 GPS 点的 map ,这样:

 String geoUri = String.format("geo:%s,%s?z=15", Double.toString(lat), Double.toString(lng)); 
Uri geo = Uri.parse(geoURI);
Intent geoMap = new Intent(Intent.ACTION_VIEW, geo);
startActivity(geoMap);

google 聚焦在 map 的正确位置,但未设置该点。 Google map 缺少什么?

最佳答案

尝试使用geo:0,0?q=lat,lng(label)给定的经度和纬度处显示带有字符串标签的 map 。示例:"geo:0,0?q=34.99,-106.61"

示例代码:

Uri geoLocation = Uri.parse("geo:0,0?").buildUpon()
.appendQueryParameter("q", Double.toString(lat), Double.toString(lng))
.build();

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(geoLocation);

if (intent.resolveActivity(getPackageManager()) != null) {
startActivity(intent);
} else {
// Error
}

更多详情请引用here .

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

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