AddressPrimaryName Property |
Namespace: Telogis.GeoBase
The street may have multiple names, for example a Highway will have a name of say US-19 but the name that interests us more is its actual street name as rendered on the map.
// Set a location (San Diego Freeway, Los Angeles) LatLon Location = new LatLon(33.668795, -117.820095); String primaryName = GeoCoder.ReverseGeoCode(Location).PrimaryName; Console.WriteLine("The primary name of this street is '{0}'", primaryName); // The primary name of this street is 'San Diego Fwy'