GeoCoderBulkReverseGeoCode Method (LatLon) |
Namespace: Telogis.GeoBase
// Specify a location LatLon location = new LatLon(33.787935, -118.013866); // Create locations var locations = new LatLon[] { location }; // Bulk reverse geocode using the locations Address[] reverseGeocodeResults = GeoCoder.BulkReverseGeoCode(locations); Console.WriteLine("Found address for first item: {0}", reverseGeocodeResults[0]); // Prints 'Found address for first item: 6830 Chapman Ave, Garden Grove, Orange, California, 92845, USA'