AutocompleteGeocoderBaseArgs Properties |
The AutocompleteGeocoderBaseArgs type exposes the following members.
Name | Description | |
---|---|---|
AllowedMatches |
Determines how strictly address candidates are matched against the search query. For example, MatchLevel.Strict can be used when results must closely match the search query,
not allowing for errors like spelling mistakes or nearby regions. The default is AllowedMatches.Permissive, which does not impose any restrictions on candidate matching.
| |
Countries |
A list of countries in which to search. This property is ignored if CountriesZone is not null.
| |
CountriesZone |
A BoundingBox that determines which countries to search. All countries
falling within this BoundingBox are included in the search. Note that this does not limit the search to only those regions of
the country covered by the BoundingBox. If a value of null is passed for this parameter, and Country is set to Country.Unknown,
then all available countries are searched.
| |
Country |
The Country in which to search. This property is ignored if CountriesZone is not null.
| |
ExcludedResultTypes |
A bitmask representing the types of results to be excluded from the current search. By default, no results are excluded.
| |
IncrementalResultsCallback | Obsolete.
A callback to receive incremental results as they are found, in addition to receiving the full results list on return. This property is deprecated, and is
included only for backwards compatibility. If a callback is provided, it is called only once with the full results of the geocode operation.
| |
LocationHint | ||
ResultsHint | Obsolete.
Deprecated. This property is ignored.
| |
ResultsLimit |
The maximum number of results that can be returned by any one search. The default is 5.
| |
SearchDepth |
Determines the desired effort to find results; higher depths can result in better quality or more results, but can take
longer to complete. The default is SearchDepth.Medium.
| |
Timeout |
Specifies how long the search should continue before terminating prematurely. Specifying a timeout of
TimeSpan.Zero means that the search will not timeout. When a search times out, the
AutocompleteGeocoderResult object returned contains all suggestions found
prior to the timeout and has a status of Timeout.
|