-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheaderTileLayer.js
55 lines (52 loc) · 1.39 KB
/
headerTileLayer.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
async function fetchImage(url, callback, headers, abort) {
let _headers = {};
if (headers) {
headers.forEach(h => {
_headers[h.header] = h.value;
});
}
const controller = new AbortController();
const signal = controller.signal;
if (abort) {
abort.subscribe(() => {
controller.abort();
});
}
const f = await fetch(url, {
method: "GET",
headers: _headers,
mode: "cors",
signal: signal
});
const blob = await f.blob();
callback(blob);
}
L.TileLayerWithHeaders = L.TileLayer.extend({
initialize: function (url, options, headers, abort) {
L.TileLayer.prototype.initialize.call(this, url, options);
this.headers = headers;
this.abort = abort;
},
createTile(coords, done) {
const url = this.getTileUrl(coords);
const img = document.createElement("img");
img.setAttribute("role", "presentation");
fetchImage(
url,
resp => {
const reader = new FileReader();
reader.onload = () => {
img.src = reader.result;
};
reader.readAsDataURL(resp);
done(null, img);
},
this.headers,
this.abort
);
return img;
}
});
L.tileLayer = function (url, options, headers, abort) {
return new L.TileLayerWithHeaders(url, options, headers, abort);
};