-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (54 loc) · 1.61 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<title>Style ocean depth data</title>
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.54.0/mapbox-gl.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.54.0/mapbox-gl.css' rel='stylesheet' />
<style>
body { margin:0; padding:0; }
#map { position:absolute; top:0; bottom:0; width:100%; }
</style>
</head>
<body>
<div id='map'></div>
<script>
mapboxgl.accessToken = 'pk.eyJ1IjoiZGFuLW1pLXN1biIsImEiOiJjanY3d3NiMmwwMDIwNDRubmRnd3VjMWZtIn0.wHbU2fSm2pmUzq2wEtOKng';
var map = new mapboxgl.Map({
container: 'map',
style: 'mapbox://styles/mapbox/streets-v11',
center: [142.591669, 11.373335],
zoom: 3,
minZoom: 3,
maxZoom: 5,
});
map.on('load', function() {
map.addSource('10m-bathymetry-81bsvj', {
type: 'vector',
url: 'mapbox://mapbox.9tm8dx88'
});
map.addLayer({
"id": "10m-bathymetry-81bsvj",
"type": "fill",
"source": "10m-bathymetry-81bsvj",
"source-layer": "10m-bathymetry-81bsvj",
"layout": {},
"paint": {
"fill-outline-color": "hsla(337, 82%, 62%, 0)",
// cubic bezier is a four point curve for smooth and precise styling
// adjust the points to change the rate and intensity of interpolation
"fill-color": [ "interpolate",
[ "cubic-bezier",
0, 0.5,
1, 0.5 ],
["get", "DEPTH"],
200, "#78bced",
9000, "#15659f"
]
}
}, 'land-structure-polygon');
});
</script>
</body>
</html>