page5.html 658 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html> 
    <head>
        <title>dev location</title>
        <script src="https://aframe.io/releases/1.3.0/aframe.min.js"></script>
        <script type='text/javascript' src='build/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>
            <a-box gps-entity-place='latitude: 48.77988545503521; longitude: 9.173586527979367' color='red' scale='20 20 20'></a-box>
    </a-scene>
    </body>
</html>
Alfakhori's avatar
Alfakhori committed
18