Click or drag to resize

AddressPrimaryName Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
The primary name for the street.

Namespace:  Telogis.GeoBase
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public string PrimaryName { get; }

Property Value

Type: String
Remarks

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.

Examples
C#
// 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'
See Also