-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
58 lines (56 loc) · 2.43 KB
/
index.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
<!doctype html>
<html>
<head>
<title>Arcadia High 3D World</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Xing">
<meta name="description" content="A 3D map of Arcadia High School that's (mostly) accurate down the cubic yard, built and programmed by Xing as part of the App Development Team. Sign in with your AUSD account to view.">
<meta property="og:title" content="Arcadia High: Virtual World">
<meta property="og:site_name" content=map.ahs.app>
<meta property="og:url" content=https://map.ahs.app>
<meta property="og:description" content="A 3D map of Arcadia High School that's (mostly) accurate down the cubic yard, built and programmed by Xing as part of the App Development Team. Sign in with your AUSD account to view.">
<meta property="og:type" content="website">
<meta property="og:image" content="https://map.ahs.app/res/render.jpg">
<meta name="twitter:card" content="summary_large_image">
<link rel="stylesheet" href="src/web/ui.css">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
</head>
<body>
<iframe id="map" src="map.html?clean=1"></iframe>
<form id="form">
<button id="signin">Sign in with your AUSD account</button>
<label id=search>
<input id="search-input" placeholder="Search places">
<input id="search-reset" type="reset" value="×">
</label>
<label>
<ul id="place-lists"> </ul>
</label>
<label id=about>
<p>
One finger to move horizontally. Two fingers (or right click / hold shift) to
rotate. Pinch to move vertically. Double tap to screenshot.
</p>
<p>
Built and programmed by <a href="https://x-ing.space">Xing</a> between 2021 and 2022,
with help from <a href="https://github.com/DolphinGui">Shin</a>,
<a href="https://github.com/qwertyuioplkjhgfd">Charles</a>,
and many open source libraries.
<a href="https://github.com/AHSAppDevTeam/Voxmap">Source code.</a>
</p>
<p>
This is a project of the Arcadia High App Development Team.
<a href="https://get.ahs.app">Get our mobile app here.</a>
</p>
</p>
Something broken? Email <a href="mailto:[email protected]">[email protected]</a>
or hunt us down by alternative means.
</p>
</label>
</form>
<script src=src/web/url.js></script>
<script src=src/web/utils.js></script>
<script type=module src=src/web/ui.js></script>
</body>
</html>