AddressSubRegions Property |
Namespace: Telogis.GeoBase
// Set a location (Burbank Boulevard, Los Angeles) LatLon Location = new LatLon(34.172167, -118.408671); String[] StreetSubRegions = GeoCoder.ReverseGeoCode(Location).SubRegions; if (StreetSubRegions.Length > 0) { for (int i = 0; i < StreetSubRegions.Length; i++) { Console.WriteLine("Subregion found: '{0}'", StreetSubRegions[i]); } } else { Console.WriteLine("No subregions found"); } // 'No subregions found'