How can I open Google Maps(using Intents or adding Google Maps into my application) with address? I have the address, but I don\'t have latitude/longitude. How can I do it? Than
String geoUri = "http://maps.google.com/maps?q=loc:" + addressName; Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(geoUri)); context.startActivity(intent);