Has anyone been able to get the Geocoder to work with an intersection. I have it working with a normal address but if I give it something like 5th Ave. and Main St. Seattle, WA I get no found addresses back (I have tried quiet a few variations).
The way I'm using the geocoder is:
List<Address> foundAdresses = gc.getFromLocationName("5th Ave. and Main St. Seattle, WA", 1);
Address x = foundAdresses.get(0);
Is there some formatting I'm doing wrong or is this not implemented?
Thanks,
Mike

