Click or drag to resize

AddressNameInfoDirectionOnSign Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
The direction of travel for this street if one is specified.

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

Property Value

Type: AddressDirectionOnSign
Examples
C#
// Set a location
LatLon Location = new LatLon(33.664013, -117.796341);
// Construct an Address.NameInfo
Address.NameInfo newNameInfo = new Address.NameInfo(GeoCoder.ReverseGeoCode(Location).Names[0].ToString());
// Print the result
Console.WriteLine("The street direction is '{0}'", newNameInfo.DirectionOnSign.ToString());
// The street direction is 'None'
See Also