使用指定的緯度經度開啟 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);