Click or drag to resize

GeoCoderReverseGeoCodeToLink Method

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Reverse geocode a ReverseGeoCodeArgs to find the closest LogicalStreetLink.

Namespace:  Telogis.GeoBase
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public static LogicalStreetLink ReverseGeoCodeToLink(
	ReverseGeoCodeArgs args
)

Parameters

args
Type: Telogis.GeoBaseReverseGeoCodeArgs
Location and optional parameters to reverse geocode with.

Return Value

Type: LogicalStreetLink
A LogicalStreetLink object or null.
Examples
C#
// Specify a location
LatLon Location = new LatLon(33.787935, -118.013866);
// Create arguments
var Arg = new ReverseGeoCodeArgs(Location) {
    Heading = 350,
    Speed = 35
};
// Reverse geocode using the arguments (location required, additional arguments optional)
LogicalStreetLink foundLink = GeoCoder.ReverseGeoCodeToLink(Arg);
Console.WriteLine("Found address {0}", foundLink.StreetName);
// Prints 'Found address 6830 Chapman Ave'
See Also