-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreliefvormen.html
93 lines (77 loc) · 4.04 KB
/
reliefvormen.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!doctype HTML>
<html>
<head>
<title>XR in aardrijkskunde</title>
</head>
<script src="js/aframe.min.js"></script>
<script src="js/aframe-ar.js"></script>
<body style="margin: 0px; overflow: hidden;">
<!-- set detectionMode and matrixCodeType to enable barcode marker detection and custom pattern files -->
<a-scene embedded vr-mode-ui="enabled: false;"
arjs="debugUIEnabled: false; detectionMode: mono_and_matrix; matrixCodeType: 3x3;">
<a-assets>
<a-asset-item id="gebergte1" src="models/reliefvormen/gebergte-elbroes.gltf"></a-asset-item>
<a-asset-item id="gebergte2" src="models/reliefvormen/gebergte-mont-blanc.gltf"></a-asset-item>
<a-asset-item id="gebergte3" src="models/reliefvormen/gebergte-mount-everest.gltf"></a-asset-item>
<a-asset-item id="heuvels1" src="models/reliefvormen/heuvels-kazachstan.gltf"></a-asset-item>
<a-asset-item id="heuvels2" src="models/reliefvormen/heuvels-oeral.gltf"></a-asset-item>
<a-asset-item id="heuvels3" src="models/reliefvormen/heuvels-wales.gltf"></a-asset-item>
<a-asset-item id="plateau1" src="models/reliefvormen/plateau-ethiopie.gltf"></a-asset-item>
<a-asset-item id="plateau2" src="models/reliefvormen/plateau-fish-river-canyon.gltf"></a-asset-item>
<a-asset-item id="plateau3" src="models/reliefvormen/plateau-grand-canyon.gltf"></a-asset-item>
<a-asset-item id="vlakte1" src="models/reliefvormen/vlakte-kopenhagen.gltf"></a-asset-item>
<a-asset-item id="vlakte2" src="models/reliefvormen/vlakte-sint-niklaas.gltf"></a-asset-item>
<a-asset-item id="vlakte3" src="models/reliefvormen/vlakte-urk.gltf"></a-asset-item>
</a-assets>
<a-marker type="barcode" value="1">
<a-entity position="0 0 0" rotation="0 0 0" scale="0.05 0.05 0.05" gltf-model="#gebergte1">
</a-entity>
</a-marker>
<a-marker type="barcode" value="6">
<a-entity position="0 0 0" rotation="0 0 0" scale="0.05 0.05 0.05" gltf-model="#gebergte2">
</a-entity>
</a-marker>
<a-marker type="barcode" value="8">
<a-entity position="0 0 0" rotation="0 0 0" scale="0.05 0.05 0.05" gltf-model="#gebergte3">
</a-entity>
</a-marker>
<a-marker type="barcode" value="10">
<a-entity position="0 0 0" rotation="0 0 0" scale="0.05 0.05 0.05" gltf-model="#heuvels1">
</a-entity>
</a-marker>
<a-marker type="barcode" value="5">
<a-entity position="0 0 0" rotation="0 0 0" scale="0.05 0.05 0.05" gltf-model="#heuvels2">
</a-entity>
</a-marker>
<a-marker type="barcode" value="4">
<a-entity position="0 0 0" rotation="0 0 0" scale="0.05 0.05 0.05" gltf-model="#heuvels3">
</a-entity>
</a-marker>
<a-marker type="barcode" value="7">
<a-entity position="0 0 0" rotation="0 0 0" scale="0.05 0.05 0.05" gltf-model="#plateau1">
</a-entity>
</a-marker>
<a-marker type="barcode" value="3">
<a-entity position="0 0 0" rotation="0 0 0" scale="0.05 0.05 0.05" gltf-model="#plateau2">
</a-entity>
</a-marker>
<a-marker type="barcode" value="2">
<a-entity position="0 0 0" rotation="0 0 0" scale="0.05 0.05 0.05" gltf-model="#plateau3">
</a-entity>
</a-marker>
<a-marker type="barcode" value="0">
<a-entity position="0 0 0" rotation="0 0 0" scale="0.05 0.05 0.05" gltf-model="#vlakte1">
</a-entity>
</a-marker>
<a-marker type="barcode" value="11">
<a-entity position="0 0 0" rotation="0 0 0" scale="0.05 0.05 0.05" gltf-model="#vlakte2">
</a-entity>
</a-marker>
<a-marker type="barcode" value="9">
<a-entity position="0 0 0" rotation="0 0 0" scale="0.05 0.05 0.05" gltf-model="#vlakte3">
</a-entity>
</a-marker>
<a-entity camera></a-entity>
</a-scene>
</body>
</html>