Maps SDK for Web
tt.services.copyrightsCaptionV2
The copyright caption service implementation provides a caption that is supposed to be displayed on a link that provides the full copyright notice. The response is not changed often.
This service is supposed to be called once when user has the map displayed for the first time.
Response
{
"formatVersion": "0.0.1"
"copyrightsCaption": "© 1992 - 2021 TomTom."
}
The response is also extended with getTrackingId()
method, which returns the Tracking-ID
associated with the request.
This text ("© 1992 - 2021 TomTom.") has to be displayed as a copyrights prompt when using TomTom services. The caption should be clickable. A user should be presented with the full copyrights notice when the caption is clicked. Full copyright notice can be retrieved from the CopyrightsV2 service.
Constructor
tt.services.copyrightsCaptionV2([options])
Example
tt.services.copyrightsCaptionV2({
key: <Your API key>
}).then(function(response) {
console.log(response);
});
Parameters
Name | Description |
---|---|
options
Object default:None |
|
additionalOptions.abortSignal
Object default:None |
Signal created with abortController.
Use AbortController to cancel requests in progress. Example
|
options.key
String default:None |
A valid API Key for the requested service.
Key is required to make use of the given service. It can be issued in the Developer Portal. |
options.trackingId
String default:uuid |
Sets value of "Tracking-ID" header.
Specifies an identifier for the request. If not set by the user, UUID is generated for each call.
|