THIS SDK ISDEPRECATED.

We rolled out a new and better SDK for you.

Autocomplete

Autocomplete enables you to make a more meaningful search by recognizing entities inside your input and offering them as query terms. Autocomplete will fill in the rest with 3 different types of results: brands, categories, and plaintext. The autocomplete complements the ‘typeahead’ parameter in a fuzzy search by providing related categories and brands that the user might be looking for. Suggestions could appear after typing the 1st character, however we recommend using it at least after the 3rd character to improve the user experience.

Sample use case 1: You would like to buy some wine, but you do not know where the closest wine shop is. Thanks to 'Categories' suggestions you would be able to find the POIs of an appropriate category. You type 'win' in your app, and at the 3rd character the service provides some suggestions like 'wine shop' or 'winery'.

Sample use case 2: You use an app to efficiently search for a POI of a specific brand, e.g., you want to find a TomTom office. Search Autocomplete will return suggested branded POIs based on only a few characters that you type in. So, when typing 'Tom' you can expect 'TomTom' as the suggested brand which will make your search result more meaningful.

The Autocomplete endpoint information is available in the Search API. Have a look at the detailed documentation for more information related to the Autocomplete endpoint.

Use the following code snippets to try this in your app:

1AutocompleteSearchEngineDescriptor searchEngineDescriptor = new AutocompleteSearchEngineDescriptor.Builder()
2 .limit(10)
3 .build()
4
5AutocompleteLocationDescriptor locationDescriptor = new AutocompleteLocationDescriptor.Builder()
6 .countryCodes(countryCodes)
7 .positionBias(new LatLngBias(Locations.AMSTERDAM_LOCATION))
8 .build();
9
10AutocompleteSpecification autocompleteSpecification = new AutocompleteSpecification.Builder(term, "en-GB")
11 .locationDescriptor(locationDescriptor)
12 .searchEngineDescriptor(searchEngineDescriptor)
13 .build();
14searchAPI.autocompleteSearch(autocompleteSpecification, autocompleteSuggestionCallback);
1val searchEngineDescriptor = AutocompleteSearchEngineDescriptor.Builder()
2 .limit(10)
3 .build()
4
5val locationDescriptor = AutocompleteLocationDescriptor.Builder()
6 .positionBias(LatLngBias(Locations.AMSTERDAM, 10000.0))
7 .countryCodes(setOf("NL"))
8 .build()
9
10val autocompleteSpecification = AutocompleteSpecification.Builder(term, "en-GB")
11 .searchEngineDescriptor(searchEngineDescriptor)
12 .locationDescriptor(locationDescriptor)
13 .build()
14searchApi.autocompleteSearch(autocompleteSpecification, callback)

Screenshots presenting how Autocomplete functionality works:

image

Suggestions

image

Results on the map