How i can show location on map by street name using android and java ?
For example: i’ll type in my program street,city – and i get the location on map
i have this sample:
Intent i = new
Intent(android.content.Intent.ACTION_VIEW,
Uri.parse("geo:31.06221,33.781642"));
startActivity(i);
how to change this code for inserting street and city ? i try this:
something like: Uri.parse("geo:empire state building"));
but it dont work ):
Use reverse-Geocoding with
GeocoderclassExample for achieving coordinates of Empire State Building: