This would be one way to search for the word "Pharmacy."
String url = "http://maps.google.co.uk/maps?q=Pharmacy&hl=en"
Intent intent = new Intent(Intent.ACTION_VIEW,Uri.parse(url)); intent.setClassName("com.google.android.apps.maps","com.google.android.maps.MapsActivity");
startActivity(intent);
And you can look at maps.google.com for more information on how to define a bounding box for your search.
source
share