AutocompleteGeocoder Class |
Namespace: Telogis.GeoBase.Geocoding
The AutocompleteGeocoder type exposes the following members.
Name | Description | |
---|---|---|
AutocompleteGeocoder | Initializes a new instance of the AutocompleteGeocoder class |
Name | Description | |
---|---|---|
BulkGeocode |
Perform a bulk geocode using an array of AutocompleteGeocoderArgs.
| |
Cancel |
Cancels any active searches. This method is designed to be called on a thread other than that from which the Geocode Overload
method is called. When canceled, the Geocode Overload method will return an
AutocompleteGeocoderResult with a status code of SearchCancelled.
| |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
Geocode(AutocompleteGeocoderBaseArgs) |
Generate address suggestions, based on the provided AutocompleteGeocoderBaseArgs object.
| |
Geocode(String, BoundingBox, LatLon, TimeSpan) |
Generate a set of address suggestions based on the partial address string provided, searching all countries which intersect the provided BoundingBox,
with an optional LatLon location hint provided to sort results based on country and proximity.
| |
Geocode(String, Country, LatLon, TimeSpan) |
Generate a set of address suggestions for a specific country, based on a partial address string, optionally ordered by proximity to a LatLon
location hint.
| |
Geocode(String, BoundingBox, LatLon, TimeSpan, ActionAutocompleteGeocoderPartialResult, AutocompleteGeocoderResultsHint) | Obsolete.
Generate a set of address suggestions based on the partial address string provided, searching all countries which intersect the provided BoundingBox,
with an optional LatLon location hint provided to sort results based on country and proximity.
| |
Geocode(String, Country, LatLon, TimeSpan, ActionAutocompleteGeocoderPartialResult, AutocompleteGeocoderResultsHint) | Obsolete.
Generate a set of address suggestions for a specific country, based on a partial address string, optionally ordered by proximity to a LatLon
location hint.
| |
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.) |
To get the best results from AutocompleteGeocoder, search strings should comply with the following guidelines:
In addition to searching for streets, AutocompleteGeocoder can also be used to search for named regions such as suburbs, cities/towns and states/provinces. Advanced modes of AutocompleteGeocoder support using a LatLon location hint, with results ordered by proximity to this location, and searching multiple countries simultaneously, by passing in a BoundingBox object indicating which countries should be searched.
AutocompleteGeocoder is designed for use in a multi-threaded environment, with searches being carried out asynchronously on a non-UI thread. See the Autocomplete Geocoder Tutorial for an example of a threaded implementation.