GeoCodeFullCrossStreetIntersection Property |
Namespace: Telogis.GeoBase
GeoCodeFull streetDetails = GeoCoder.ReverseGeoCodeFull(new LatLon(33.585011, -117.733026)); if (streetDetails != null) { Console.WriteLine("The nearest cross street to this location is {0}, intersecting at {1}", streetDetails.CrossStreet, streetDetails.CrossStreetIntersection); // Outputs as 'The nearest cross street to this location is Enterprise, intersecting at 33.584980,-117.733050' }