Click or drag to resize

GeoCoderBulkReverseGeoCodeFull Method (ReverseGeoCodeArgs)

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Reverse geocode an array of 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[] BulkReverseGeoCodeFull(
	ReverseGeoCodeArgs[] bulkReverseGeocodeArgs
)

Parameters

bulkReverseGeocodeArgs
Type: Telogis.GeoBaseReverseGeoCodeArgs
Array of locations and optional parameters to reverse geocode with.

Return Value

Type: GeoCodeFull
An array of GeoCodeFull objects. The GeoCodeFull elements may be null.
Examples
C#
// Specify a location
LatLon Location = new LatLon(33.787935, -118.013866);
// Create arguments
var args = new[] { 
        new ReverseGeoCodeArgs(Location) {
        Heading = 350,
        Speed = 35
    },
};
// Bulk reverse geocode using the arguments (location required, additional arguments optional)
GeoCodeFull[] reverseGeocodeResults = GeoCoder.BulkReverseGeoCodeFull(args);
Console.WriteLine("Found address for first item: {0}", reverseGeocodeResults[0].Address);
// Prints 'Found address for first item:  6830 Chapman Ave, Garden Grove, Orange, California, 92845, USA'
See Also