使用指定的纬度经度打开 Goog​​le 地图

你可以使用 Intent 将应用中的纬度,经度传递到 Google 地图

String uri = String.format(Locale.ENGLISH, "http://maps.google.com/maps?q=loc:%f,%f", 28.43242324,77.8977673);
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(uri));
startActivity(intent);