Click or drag to resize

GeoCoderReverseGeoCodeFull Method (ReverseGeoCodeArgs)

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Reverse geocode a ReverseGeoCodeArgs to a street address and retrieve additional information specific to the StreetLink the point was closest to.

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

Parameters

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

Return Value

Type: GeoCodeFull
A GeoCodeFull 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)
Address foundAddress = GeoCoder.ReverseGeoCodeFull(Arg).Address;
Console.WriteLine("Found address {0}", foundAddress);
// Prints 'Found address 6830 Chapman Ave, Garden Grove, Orange, California, 92845, USA'
See Also