I'm trying to find the latitude and the longitude of a given intersection in an android application, using geocoder
:
List<Address> addresses = geocoder.getFromLocationName("Terrace St & Darragh St, Pittsburgh, PA", 1);
This query returns always null
, even if I replace the '&' with 'and'.
How do I solve this? Does geocoder provide this information?