I use the following code to call google map and retrieve data using implicit intent.
Intent searchAddress = new Intent(Intent.ACTION_VIEW, Uri
.parse("geo:0,0?q=" + location));
startActivity(searchAddress);**
I want some information about hospitals instead of showing all the data in Google Maps.
Is this possible to specify the location and place in implicit intent ACTION VIEW..?