-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy path05-transform-request.html
77 lines (64 loc) · 1.85 KB
/
05-transform-request.html
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<html>
<head>
<title>MapTiler JS SDK example</title>
<style>
html,
body {
margin: 0;
}
#map-container {
position: absolute;
width: 100vw;
height: 100vh;
background: radial-gradient(circle, rgb(186 226 255) 5%, rgb(0 100 159) 98%);
}
#style-picker-container {
position: absolute;
z-index: 2;
margin: 10px;
}
</style>
<link rel="stylesheet" href="../dist/maptiler-sdk.css">
</head>
<body>
<div id="map-container"></div>
<div id="style-picker-container">
<select name="mapstyles" id="mapstyles-picker"></select>
</div>
<script src="assets/demo-utils.js"></script>
<script>
addPerformanceStats();
setupMapTilerApiKey();
const map = new maptilersdk.Map({
container: document.getElementById("map-container"),
style: maptilersdk.MapStyle.OUTDOOR.DARK,
hash: true,
transformRequest: function (url) {
const reqUrl = new URL(url);
reqUrl.searchParams.append("some-extra-param", "some-extra-value");
return {
url: reqUrl.href,
}
}
});
const styleDropDown = document.getElementById("mapstyles-picker");
styleDropDown.onchange = (evt) => {
map.setStyle(styleDropDown.value)
};
Object.keys(maptilersdk.MapStyle).forEach(s => {
const styleOption = document.createElement('option');
styleOption.value = maptilersdk.MapStyle[s].DEFAULT.id;
styleOption.innerHTML = s.replace("_", " ").toLowerCase();
styleDropDown.appendChild(styleOption);
});
// This will end up being used instead of the one defined in the constructor
map.setTransformRequest((url) => {
const reqUrl = new URL(url);
reqUrl.searchParams.append("some-extra-param-two", "some-extra-value-two");
return {
url: reqUrl.href,
}
});
</script>
</body>
</html>