Click or drag to resize

StreetLinkExtraData Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Implemented by derived classes to get the extra data for this link. Extra data includes information such as the existence of traffic signals at the end of the link. It is not available in all data files.

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

Property Value

Type: LinkExtraData
Examples
C#
LinkExtraData extras = GeoCoder.ReverseGeoCodeFull(new LatLon(33.476036, -117.697573)).StreetLink.ExtraData;
Console.WriteLine("Traffic signals are located at {0} end(s) of this street link", extras.TrafficSignal);
// Traffic signals are located at NonReference end(s) of this street link
See Also