-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLab_4.4.html
More file actions
98 lines (96 loc) · 2.8 KB
/
Lab_4.4.html
File metadata and controls
98 lines (96 loc) · 2.8 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<title>Add custom icons with Markers</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.6.0/mapbox-gl.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v1.6.0/mapbox-gl.css' rel='stylesheet' />
<style>
body { margin: 0; padding: 0; }
#map { position: absolute; top: 0; bottom: 0; width: 100%; };
</style>
</head>
<body>
<style>
.marker {
display: block;
border: none;
cursor: pointer;
padding: 25px;
}
</style>
<div id='map'></div>
<script src="js/cats.js"></script>
<script>
// mapboxgl.accessToken = 'pk.eyJ1IjoiaXNhYWN2IiwiYSI6ImNrMnpqYnVxaTA1b3IzbXBnaG5zY3o3eTEifQ.kMdIcXYBFKHTorj3Hxgi7g';
// var geojson = {
// "type": "FeatureCollection",
// "features": [
// {
// "type": "Feature",
// "properties": {
// "message": "Foo",
// "SymbolID": [0]
// },
// "geometry": {
// "type": "Point",
// "coordinates": [
// -66.324462890625,
// -16.024695711685304
// ]
// }
// },
// {
// "type": "Feature",
// "properties": {
// "message": "Bar",
// "SymbolID": [1]
// },
// "geometry": {
// "type": "Point",
// "coordinates": [
// -61.2158203125,
// -15.97189158092897
// ]
// }
// },
// {
// "type": "Feature",
// "properties": {
// "message": "Baz",
// "SymbolID": [2]
// },
// "geometry": {
// "type": "Point",
// "coordinates": [
// -63.29223632812499,
// -18.28151823530889
// ]
// }
// }
// ]
// };
// var map = new mapboxgl.Map({
// container: 'map',
// style: 'mapbox://styles/mapbox/streets-v11',
// center: [-65.017, -16.457],
// zoom: 5
// });
// // add markers to map
// geojson.features.forEach(function(marker) {
// // create a DOM element for the marker
// var el = document.createElement('div');
// el.className = 'marker';
// el.style.backgroundImage = 'url(https://vanmeciv.github.io/host/img/icons/' + marker.properties.SymbolID + '.png)';
// el.addEventListener('click', function() {
// window.alert(marker.properties.message);
// });
// // add marker to map
// new mapboxgl.Marker(el)
// .setLngLat(marker.geometry.coordinates)
// .addTo(map);
// });
</script>
</body>
</html>