GeoCoderReverseGeoCodeFull Method (ReverseGeoCodeArgs) |
Namespace: Telogis.GeoBase
// Specify a location LatLon Location = new LatLon(33.787935, -118.013866); // Create arguments var Arg = new ReverseGeoCodeArgs(Location) { Heading = 350, Speed = 35 }; // Reverse geocode using the arguments (location required, additional arguments optional) Address foundAddress = GeoCoder.ReverseGeoCodeFull(Arg).Address; Console.WriteLine("Found address {0}", foundAddress); // Prints 'Found address 6830 Chapman Ave, Garden Grove, Orange, California, 92845, USA'