You can pass latitude, longitude from your app to Google map using Intent

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);