ExtendedStructuredGeoCodeArgs Class |
Namespace: Telogis.GeoBase.Geocoding
The ExtendedStructuredGeoCodeArgs type exposes the following members.
Name | Description | |
---|---|---|
ExtendedStructuredGeoCodeArgs | Initializes a new instance of the ExtendedStructuredGeoCodeArgs class |
Name | Description | |
---|---|---|
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
Name | Description | |
---|---|---|
City |
The city to be searched.
| |
Country |
The country to search.
(Inherited from GeoCodeArgs.) | |
MaxResults |
The maximum number of results to return.
(Inherited from GeoCodeArgs.) | |
Name |
A string representing the street name.
| |
Number |
An integer representing the street number.
| |
PostalCode |
The postal code to be searched.
| |
Prefix |
A string representing the street prefix, such as 'chemin' or 'north'.
| |
Region |
The region to be searched.
| |
StreetTypeAfter |
A string representing the street type (after), such as 'street', 'avenue' or 'road'.
| |
StreetTypeBefore |
A string representing the street type (before), such as 'rue' or 'boulevard'.
| |
Suffix |
A string representing the street suffix, such as 'north', 'central' or 'loop'.
| |
UseExternalGeocoder |
Use external geocoder if available
(Inherited from GeoCodeArgs.) | |
UseInternalGeocoder |
Use the built-in geocoder
(Inherited from GeoCodeArgs.) |
// Create an ExtendedStructuredGeoCodeArgs object var ExtendedStructuredArgs = new Telogis.GeoBase.Geocoding.ExtendedStructuredGeoCodeArgs() { Number = 17, Prefix = "West", Name = "Ryley", StreetTypeAfter = "Court", City = "Aliso Viejo", Region = "California", PostalCode = "92656", MaxResults = 5, Country = Country.USA }; // Pass the object to the Geocoder GeocodeAddress[] ExtendedStructuredArray = GeoCoder.GeoCode(ExtendedStructuredArgs);