How to Geocode this address in Thinkgeo "48 Howard Street, Vineland, NJ 08360, United States" as i am getting correct adddress in Google Map Please help with full c# code
GeoCoding
Hi Mohammed,
Please after evaluating Map Suite Geocoder 8.0, please use the below codes to geocode for USA:
string
dataPath = WebConfigurationManager.AppSettings[
"Geocoder8.0Folder"
];
UsaGeocoder usaGeocoder =
new
UsaGeocoder(dataPath, MatchMode.ExactMatch);
// Open the geocoder, get any matches and close it
Collection<GeocoderMatch> matchResult;
try
{
usaGeocoder.Open();
matchResult = usaGeocoder.Match(searchText);
matchItems = matchResult;
}
finally
{
usaGeocoder.Close();
}
I tested your address in geocoder 8.0 with its data, the result is the same one with Bing and Google map.
Please let us know if any questions,
Thanks,
Troy