I'm using following code to locate location on default google map.
Uri uri = Uri.parse("geo:"+ Global.detail_lat+","+Global.detail_long+"?z=15");
Intent in = new Intent(Intent.ACTION_VIEW, uri);
startActivity(in);
But using this code, when map will be open, there is no any point or mark or pin has been displayed on that location. It just looks like simple map only. How can i push pin on it? or how can i highlight that location on this default google map using this code?
Thanks, Jay Patel