Telogis.GeoBase.AutocompleteGeocoder.ACGeoCoderSearchResult |
Represents the values returned from the GeoStream server as the result of an auto-complete geocoding operation. Contains the search status (whether the search was completed or indeterminate) and an array of AutocompleteGeocoder.Suggestions.
Name | Description |
---|---|
getStatus () | Gets the status of the search. ReturnsString - The status of the search may be 'SearchCompleted', 'Timeout', or 'TooManyResults'. If the server returns 'SearchCompleted' without any suggestion, this indicates that no result has been found. If the server returns 'Timeout' or 'TooManyResults', the server will also return any suggestions found. The user can either select one of these suggestions, or continue typing for more accurate results. 'Timeout' indicates that the search has taken longer to complete than the timeout specified in AutocompleteGeocoder.geoCode, so the server has given up searching. 'TooManyResults' indicates that the server has found too many results (in other words, the partial address supplied by the user requires additional qualification), so has given up searching. |
getSuggestions () | Gets an array of AutocompleteGeocoder.Suggestions. ReturnsArray - An array of AutocompleteGeocoder.Suggestions. |