awacke1 commited on
Commit
6b2008d
Β·
1 Parent(s): e1bc474

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +44 -3
README.md CHANGED
@@ -1,6 +1,6 @@
1
  ---
2
- title: HTML5 Aframe 3dMap Flight
3
- emoji: πŸ“š
4
  colorFrom: blue
5
  colorTo: green
6
  sdk: static
@@ -8,4 +8,45 @@ pinned: false
8
  license: mit
9
  ---
10
 
11
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ title: HTML5-3D-VR-Aframe-Map
3
+ emoji: πŸ“š3D-VR
4
  colorFrom: blue
5
  colorTo: green
6
  sdk: static
 
8
  license: mit
9
  ---
10
 
11
+ 🏷️ **Title:** HTML5-3D-VR-Aframe-Map πŸ“š3D-VR
12
+
13
+ πŸ“‹ **Description:** This is a fun πŸ“š3D-VR simulator that shows a map πŸ—ΊοΈ with motion controls ⌨️ of the WASD keyboard. You can explore a 3D landscape 🏞️ using Aframe.
14
+
15
+ 🧐 **Details:**
16
+
17
+ - **HTML5:** Refers to the version of the HTML (Hypertext Markup Language) used to create the web page on which the 3D-VR-Aframe-Map is hosted.
18
+
19
+ - **3D:** Refers to the three-dimensional nature of the map in the 3D-VR-Aframe-Map simulator.
20
+
21
+ - **VR:** Refers to the virtual reality aspect of the 3D-VR-Aframe-Map simulator. Users can immerse themselves in the virtual environment and interact with it using VR headsets.
22
+
23
+ - **Aframe:** Refers to the web framework used to create the 3D-VR-Aframe-Map simulator. Aframe is a popular framework for creating virtual reality experiences on the web.
24
+
25
+ - **Map:** Refers to the representation of geographic or spatial data in a visual form. In the 3D-VR-Aframe-Map simulator, users can explore a 3D landscape using motion controls and a map interface.
26
+
27
+ πŸ’» **Code Snippet:**
28
+
29
+ ```html
30
+ <html>
31
+ <head>
32
+ <title>HTML5-3D-VR-Aframe-Map πŸ“š3D-VR </title>
33
+ <script src="https://aframe.io/releases/1.2.0/aframe.min.js"></script>
34
+ </head>
35
+ <body>
36
+ <a-scene>
37
+ <a-box position="-1 0.5 -3" rotation="0 45 0" color="#4CC3D9"></a-box>
38
+ <a-sphere position="0 1.25 -5" radius="1.25" color="#EF2D5E"></a-sphere>
39
+ <a-cylinder position="1 0.75 -3" radius="0.5" height="1.5" color="#FFC65D"></a-cylinder>
40
+ <a-plane position="0 0 -4" rotation="-90 0 0" width="4" height="4" color="#7BC8A4"></a-plane>
41
+ <a-sky color="#ECECEC"></a-sky>
42
+ </a-scene>
43
+ </body>
44
+ </html>
45
+ ```
46
+
47
+ πŸ”‘ Acronyms:
48
+
49
+ HTML: Hypertext Markup Language, a coding language used to create web pages.
50
+ VR: Virtual Reality, an immersive experience that simulates a real environment.
51
+ Aframe: A web framework used to create virtual reality experiences on the web.
52
+ WASD: A set of four keyboard keys that are commonly used in video games for motion controls.