I have this code which starts the maps application and zooms in on D.C
Intent myIntent = new Intent("android.intent.action.VIEW",
Uri.parse("geo:38.899533,-77.036476?z=16"));
startActivity(myIntent);
What do I use to search for hospitals in the area?
I though I might be able to use
Intent myIntent = new Intent("android.intent.action.VIEW",
Uri.parse("geo:38.899533,-77.036476?z=16&hospital"));
startActivity(myIntent);
But that doesn't work
Thanks
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~----------~----~----~----~------~----~------~--~---