GeoCoderReverseGeoCodeToLink Method |
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) LogicalStreetLink foundLink = GeoCoder.ReverseGeoCodeToLink(Arg); Console.WriteLine("Found address {0}", foundLink.StreetName); // Prints 'Found address 6830 Chapman Ave'