-
Notifications
You must be signed in to change notification settings - Fork 15
/
antipodes.html
46 lines (40 loc) · 1.14 KB
/
antipodes.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Antipodes</title>
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no">
<link href="https://api.mapbox.com/mapbox-gl-js/v2.9.1/mapbox-gl.css" rel="stylesheet">
<script src="https://api.mapbox.com/mapbox-gl-js/v2.9.1/mapbox-gl.js"></script>
<style>
body { margin: 0; padding: 0; }
#map { position: absolute; top: 0; bottom: 0; width: 100%; }
</style>
</head>
<body>
<div id="map"></div>
<script>
let initLoad = true;
mapboxgl.accessToken = 'pk.eyJ1IjoidGp1a2Fub3Z0IiwiYSI6ImNrNTdxempkZTBmeTczZmxqdmxmNHlqczAifQ.a_BL5RTprJKXwaTzbsPeyw';
const map = new mapboxgl.Map({
container: 'map',
projection: 'globe',
style: 'mapbox://styles/tjukanovt/cl39zfplb000015lv3wxxrrjc',
zoom: 3,
center: [120,-10]
});
map.on('load', () => {
if (initLoad) {
initLoad = false;
map.setFog({
color: '#AB4644',
'horizon-blend': 0.05,
'high-color': '#743230',
'star-intensity': 0.1,
'space-color': '#777D71'
});
}
});
</script>
</body>
</html>