StreetLinkExtraData Property | |
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; }
Public MustOverride ReadOnly Property ExtraData As LinkExtraData
Get
Property Value
Type:
LinkExtraDataExamples 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);
See Also