AutocompleteGeocoderAllowedMatches Enumeration | |
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Determines the strictness used when matching an address candidate against a search query. In most cases,
a combination value such as "Permissive" or "Strict" should be used. However, you can create combinations
of the other enumeration values by using the bitwise OR (|) operator.
Namespace:
Telogis.GeoBase.Geocoding
Assembly:
geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax public enum AllowedMatches
Public Enumeration AllowedMatches
Members
| Member name | Value | Description |
---|
| Strict | 255 |
Don't allow query errors such as incorrect regions or spelling errors.
|
| Permissive | 16777215 |
Allow most minor query errors. This is the best value for most contexts.
|
| NearbyRegions | 256 |
Allow results where a region in a street query is a match for a nearby region, rather than the actual region.
|
| SpellingErrors | 512 |
Allow results that include spelling errors in street or region names.
|
| WordErrors | 1024 |
Allow certain kinds of errors involving missing, extra, or incorrect words, if other details match.
|
| PostCodeErrors | 2048 |
Allow results that include errors in post or zip codes.
|
See Also