RequestParameters
RequestParameters =
object
Defined in: src/util/ajax.ts:32
A RequestParameters object to be returned from Map.options.transformRequest callbacks.
Example
// use transformRequest to modify requests that begin with `http://myHost`
transformRequest: function(url, resourceType) {
if (resourceType === 'Source' && url.indexOf('http://myHost') > -1) {
return {
url: url.replace('http', 'https'),
headers: { 'my-custom-header': true },
credentials: 'include' // Include cookies for cross-origin requests
}
}
}
Properties
body?
optionalbody:string
Defined in: src/util/ajax.ts:48
Request body.
cache?
optionalcache:RequestCache
Defined in: src/util/ajax.ts:64
Parameters supported only by browser fetch API. Property of the Request interface contains the cache mode of the request. It controls how the request will interact with the browser's HTTP cache. (https://developer.mozilla.org/en-US/docs/Web/API/Request/cache)
collectResourceTiming?
optionalcollectResourceTiming:boolean
Defined in: src/util/ajax.ts:60
If true, Resource Timing API information will be collected for these transformed requests and returned in a resourceTiming property of relevant data events.
credentials?
optionalcredentials:"same-origin"|"include"
Defined in: src/util/ajax.ts:56
'same-origin'|'include' Use 'include' to send cookies with cross-origin requests.
headers?
optionalheaders:any
Defined in: src/util/ajax.ts:40
The headers to be sent with the request.
method?
optionalmethod:"GET"|"POST"|"PUT"
Defined in: src/util/ajax.ts:44
Request method 'GET' | 'POST' | 'PUT'.
type?
optionaltype:"string"|"json"|"arrayBuffer"|"image"
Defined in: src/util/ajax.ts:52
Response body type to be returned.
url
url:
string
Defined in: src/util/ajax.ts:36
The URL to be requested.