GeoCoderReverseGeoCodeFull Method (LatLon) | |
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
)
Public Shared Function ReverseGeoCodeFull (
location As LatLon
) As GeoCodeFull
Parameters
- location
- Type: Telogis.GeoBaseLatLon
Location to find.
Return Value
Type:
GeoCodeFullA
GeoCodeFull object or null
Examples
Address foundAddress = GeoCoder.ReverseGeoCodeFull(new LatLon(33.787935, -118.013866)).Address;
Console.WriteLine("Found address {0}", foundAddress);
See Also