GeoCoderGeoCode Method (String, Country) |
Namespace: Telogis.GeoBase
The geocoder is capable of looking up street intersections when they are specified with the & (ampersand) or @ characters. For example:
18th & placentia, costa mesa18th @ placentia, costa mesaThe address may also contain a latitude longitude pair, for example "34, -117"
Related articles: Geocoding Concept.
// Geocode an address GeocodeAddress[] addr = GeoCoder.GeoCode("20 Enterprise, Aliso Viejo, California", Country.USA); // Write out the first address in the array Console.WriteLine("Found address '{0}'", addr[0].ToString()); // Prints 'Found address '20 Enterprise, Aliso Viejo, California, 92656, USA''