Click or drag to resize

GeoCodeFullCrossStreetIntersection Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
The point at which the CrossStreet intersects this street link.

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

Property Value

Type: LatLon
Examples
C#
GeoCodeFull streetDetails = GeoCoder.ReverseGeoCodeFull(new LatLon(33.585011, -117.733026));
if (streetDetails != null) {
    Console.WriteLine("The nearest cross street to this location is {0}, intersecting at {1}", 
        streetDetails.CrossStreet, 
        streetDetails.CrossStreetIntersection);
    // Outputs as 'The nearest cross street to this location is Enterprise, intersecting at 33.584980,-117.733050'
}
This example finds the cross street closest to the specified location, and the location at which this cross street intersection occurs.
See Also