Click or drag to resize

StreetLinkPoints 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 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; }

Property Value

Type: LatLon
Examples
C#
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]);
    //-- 33.634519,-117.898720
    //-- 33.634941,-117.897970
}
See Also