Open Google map with specified latitude longitude

suggest change

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

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents