StreetLinkPoints Property | |
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Implemented by derived classes to get an array of the points representing this street. Points are returned
with the reference end at position 0 and the non-reference end at Points.Length - 1
Namespace:
Telogis.GeoBase
Assembly:
geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax public abstract LatLon[] Points { get; }
Public MustOverride ReadOnly Property Points As LatLon()
Get
Property Value
Type:
LatLonExamples LatLon[] streetPoints = GeoCoder.ReverseGeoCodeFull(new LatLon(33.634705, -117.898371)).StreetLink.Points;
for (int i = 0; i < streetPoints.Length; i++) {
Console.WriteLine("-- {0}", streetPoints[i]);
}
See Also