如何在Android中获取我当前位置的谷歌地图网址?

时间:2018-04-14 06:12:36

标签: android google-maps android-studio geolocation location

我试图获取当前位置的确切网址,将我的gps位置显示为地图上的标记。

enter image description here

3 个答案:

答案 0 :(得分:1)

您可以使用以下格式的链接:

https://www.google.com/maps/search/?api=1&query=36.26577,-92.54324

并分别在latitudelongitude的位置添加您所在位置的36.26577-92.54324

答案 1 :(得分:0)

 http://maps.google.com/?q=<lat>,<lng>

使用上述格式,将lat和lng的值传递给上述网址格式。

答案 2 :(得分:0)

您可以将它与Android Intent一起使用。

String geoUri = "http://maps.google.com/maps?q=loc:" + <lat-long>;
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(geoUri));
startActivity(intent);

或只是网址

"http://maps.google.com/maps?q=loc:" + <lat-long>;