答案 0 :(得分:1)
您可以使用以下格式的链接:
https://www.google.com/maps/search/?api=1&query=36.26577,-92.54324
并分别在latitude
和longitude
的位置添加您所在位置的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>;