kontakt.html 674 Bytes
Newer Older
Alfakhori's avatar
Alfakhori committed
1

Wolfgang Knopki's avatar
Wolfgang Knopki committed
2
<!DOCTYPE html>
Alfakhori's avatar
Alfakhori committed
3
4
5
6
7
8
9
10
11
12
13
14
<html> 
    <head>
        <title>AR.js Hello World Example</title>
        <script src="https://aframe.io/releases/1.3.0/aframe.min.js"></script>
        <script type='text/javascript' src='./assets/aframe-ar-nft.js'></script>
    </head>
    <body>
    <a-scene
        vr-mode-ui="enabled: false"
        arjs='sourceType: webcam; videoTexture: true; debugUIEnabled: false;'
        renderer='antialias: true; alpha: true'>
            <a-camera gps-camera rotation-reader></a-camera>
Alfakhori's avatar
Alfakhori committed
15
            <a-box gps-entity-place='latitude: 48.78088817787119; longitude: 9.173737457022073' color='red' scale='20 20 20'></a-box>
Alfakhori's avatar
Alfakhori committed
16
17
    </a-scene>
    </body>
Wolfgang Knopki's avatar
Wolfgang Knopki committed
18
</html>