Click or drag to resize

GeoCoderReverseGeoCodeFull Method (LatLon)

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Reverse geocode a LatLon 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(
	LatLon location
)

Parameters

location
Type: Telogis.GeoBaseLatLon
Location to find.

Return Value

Type: GeoCodeFull
A GeoCodeFull object or null
Examples
C#
// Reverse geocode an address
Address foundAddress = GeoCoder.ReverseGeoCodeFull(new LatLon(33.787935, -118.013866)).Address;
Console.WriteLine("Found address {0}", foundAddress);
// Prints 'Found address 6830 Chapman Ave, Garden Grove, Orange, California, 92845, USA'
See Also