Click or drag to resize

AddressRegions Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Contains the list of regions for this address, with the most specific region (eg suburb or city) first.

Namespace:  Telogis.GeoBase
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public string[] Regions { get; set; }

Property Value

Type: String
Remarks

Different countries have different levels of administrative regions.

For example, Germany is divided into 16 Bundesländer (federal states), which are further divided into Regierungsbezirke (government regions), which in turn are subdivided into Kreise (administrative districts), which may again comprise Ämter (offices) and Gemeinden (municipalities).

Examples
C#
// Set a location (Burbank Boulevard, Los Angeles)
LatLon Location = new LatLon(34.172167, -118.408671);
// Construct an Address.Regions string array
String[] RegionsArray = GeoCoder.ReverseGeoCode(Location).Regions;
for (int i = 0; i < RegionsArray.Length; i++) {
    Console.WriteLine("Region name is {0}", RegionsArray[i]);
}
// Region name is Valley Village
// Region name is Los Angeles
// Region name is California
See Also