Maps SDK for Web
tt.services.nearbySearch
Makes a search request using the TomTom Search API - Nearby Search.
Parameters need to be be passed to the constructor. The method go performs the actual call.
You have two ways to make a batch request to the service.
- Pass an array of objects, which represents options for each call. In this situation we will decide for you which endpoint to call and we will handle the data retrieval for you.
- If you want to explicitly decide which batch mode you want to use, pass an object which will contain the 'batchMode' property set to the correct value (sync, async, or redirect) and batchItems, which will contain an array of objects which represent options for each call. For more information, please refer to batch documentation:
//Option 1:
tt.services.<service name>([{
key: <Your API key>,
...
}, {
key: <Your API key>,
...
} //... more objects
])
.go()
.then(callback);
//Option 2, explicitly specifying batchMode:
tt.services.<service name>({
batchMode: 'sync'
batchItems: [{
key: <Your API key>,
...
}, {
key: <Your API key>,
...
} //... more objects
]
})
.go()
.then(callback);
Constructor
tt.services.nearbySearch([options])
Example
function callbackFn(result) {
console.log(result);
};
tt.services.nearbySearch({
key: <Your API key>,
center: [0,0],
radius: 1000
})
.go()
.then(callbackFn);
The SDK provides a Promise polyfill for browsers (IE<9) without native ECMAScript 6 support.
Parameters
Name | Description |
---|---|
options
Object default:None |
Options to be passed to the search call, or an array of such options objects to perform a batch request. |
options.bestResult
Boolean default:false |
Defines whether the geocode service should return the best result. It makes the service instances to return only one result, the best match result. This option overwrites both limit and offset parameters. It changes the response from an array to a single result. |
options.center
Object | Number[] | String[] | String default:None |
Longitude and latitude data in one of the supported formats. This option represents a geographic coordinate. The supported formats are listed below:
|
options.countrySet
String default:None |
Comma separated list of country codes (e.g.: FR,ES) This option is a list of country codes used to limit the search request to those specific political limits. |
options.extendedPostalCodesFor
String default:None |
Represent the indexes for extended postal codes. Represent the indexes for which extended postal codes should be included in the results. The available indexes codes are:
"None"
for no indexes.
Example
The extended postal code will be returned as an |
options.key
String default:None |
A valid API Key for the requested service. A valid API Key is required to make use of the given service. It can be issued in the Developer Portal. |
options.language
String default:null |
Language code that decides in which language the search results should be returned. The value should correspond to one of the supported IETF language codes. The list is available here. The code is case insensitive. |
options.limit
Number default:10 |
The maximum number of responses that will be returned. Represents the maximum number of responses that will be returned per request. The maximum value is 100. |
options.offset
Number default:None |
A positive integer value. Use this option if you want to apply an offset to the results returned by the Search API service. It makes use of the ofs parameter which allows paginated results when used with the limit option. The maximum value is 1900. |
options.protocol
"http" | "https" default:"https" |
The protocol type to be used in the calls. Represents the type of protocol used to perform a service call. |
options.radius
Number default:10000 |
A positive integer value in meters. This option specifies the search radius in meters using the coordinates given to the center
option as origin.
|
options.view
String default:None |
The new value to be set. Sets or returns the view option value to be used in the calls.
Can be one of "Unified", "AR", "IN", "PK", "IL, and "MA".
Legend:
Unified - International view
AR - Argentina
IN - India
PK - Pakistan
IL - Israel
MA - Morocco
|
Methods
go( ): Promise
Executes a predefined asynchronous task using the current configuration.
Returns