Click or drag to resize

GeoCoderBulkReverseGeoCode Method (LatLon)

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Reverse geocode an array of LatLon to an array of corresponding street addresses.

Namespace:  Telogis.GeoBase
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public static Address[] BulkReverseGeoCode(
	LatLon[] latLons
)

Parameters

latLons
Type: Telogis.GeoBaseLatLon
Array of locations to reverse geocode with.

Return Value

Type: Address
An array of Address objects. The Address elements may be null if an address could not be found.
Examples
C#
// Specify a location
LatLon location = new LatLon(33.787935, -118.013866);
// Create locations
var locations = new LatLon[] { 
    location
};
// Bulk reverse geocode using the locations
Address[] reverseGeocodeResults = GeoCoder.BulkReverseGeoCode(locations);
Console.WriteLine("Found address for first item: {0}", reverseGeocodeResults[0]);
// Prints 'Found address for first item:  6830 Chapman Ave, Garden Grove, Orange, California, 92845, USA'
See Also