aktuelles.html 1 KB
Newer Older
Alfakhori's avatar
Alfakhori committed
1
<!doctype html>
Alfakhori's avatar
Alfakhori committed
2
<html>
Alfakhori's avatar
Alfakhori committed
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
    <head>
        <meta charset="utf-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge" />
        <script src="https://aframe.io/releases/1.0.4/aframe.min.js"></script>
        <script src="https://unpkg.com/aframe-look-at-component@0.8.0/dist/aframe-look-at-component.min.js"></script>
        <script src="https://raw.githack.com/AR-js-org/AR.js/master/aframe/build/aframe-ar-nft.js"></script>
    </head>

    <body style="margin: 0; overflow: hidden;">
        <a-scene
            embedded
            loading-screen="enabled: false;"
            arjs="sourceType: webcam; debugUIEnabled: false;"
        >
                <a-image
Alfakhori's avatar
Alfakhori committed
18
                    src="assets/asset.jpeg"
Alfakhori's avatar
Alfakhori committed
19
20
                    look-at="[gps-camera]"
                    scale="1 1 1"
Alfakhori's avatar
Alfakhori committed
21
                    gps-entity-place="latitude: 48.78088817787119; longitude: 9.173737457022073;"
Alfakhori's avatar
Alfakhori committed
22
23
24
25
26
                ></a-image>

            <a-camera gps-camera rotation-reader></a-camera>
        </a-scene>
    </body>
Wolfgang Knopki's avatar
Wolfgang Knopki committed
27
</html>