I have one issue with Default Google Map app in our phone.
I m calling default map application on button click using following code:
Uri uri = Uri.parse("geo:"+ Global.curLatitude+","+Global.curLongitude);
Intent in = new Intent(Intent.ACTION_VIEW, uri);
startActivity(in);
issue is that when map is opened, it looks with maximum zoom level, so i am able to see location with maximum zoom level. can i set zoom level with this code?
use the above code to do your requirement. and replace zoom with your desired zoom value.