Click or drag to resize

StreetLinkLastPoint Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
The last point on the street (this point will be at the non-reference end).

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

Property Value

Type: LatLon
Examples
C#
// Get a street link on Street of the Golden Lantern in Dana Point, Ca using ReverseGeoCodeFull, then locate the last point on the street
LatLon lastpoint = Telogis.GeoBase.GeoCoder.ReverseGeoCodeFull(new LatLon(33.476036, -117.697573)).StreetLink.LastPoint;
Console.WriteLine("Last point: {0}", lastpoint);
// Last point: 33.476340,-117.697631
See Also