-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathadd-image.html
74 lines (70 loc) · 2.39 KB
/
add-image.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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<title></title>
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v1.13.2/mapbox-gl.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v1.13.2/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 = '<your access token here>';
var map = new mapboxgl.Map({
container: 'map',
style: 'styles/freetilehosting/positron.json',
center: [5.1, 52.0],
zoom: 8
});
map.on('load', function () {
map.loadImage('icons/geodan-15.png', (error, image) => {
if (error) throw error;
map.addImage('geodan-15', image);
map.addLayer({
"id": "points",
"type": "symbol",
"source": {
"type": "geojson",
"data": {
"type": "FeatureCollection",
"features": [{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [4.91320, 52.34227]
},
"properties": {
"title": "Geodan Amsterdam",
"icon": "geodan-15"
}
}, {
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [5.29969, 51.69176]
},
"properties": {
"title": "Geodan Den Bosch",
"icon": "star-11"
}
}]
}
},
"layout": {
"icon-image": "{icon}",
"text-field": "{title}",
"text-font": ["Open Sans Semibold", "Arial Unicode MS Bold"],
"text-offset": [0, 0.6],
"text-anchor": "top"
}
});
});
});
</script>
</body>
</html>