I'm having an issue where the geocoder is not returning any street results. I'm using the following code:
UsaGeocoder geocoder = new UsaGeocoder(dataPath, MatchMode.ExactMatch);
geocoder.Open();
Collection<GeocoderMatch> results = geocoder.Match(address);
Where address is 1234 Foothill, La Verne, CA 91750
I've tried the same query on your website and it works fine. I'm using the 4.0 dll's. Any help or insight would be appreciated.
.Ryan.