This repository has been archived by the owner on Mar 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (83 loc) · 2.71 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<html>
<head>
<meta charset="utf-8">
<title>Maps @ HackUPC</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta property="og:title" content="Maps @ HackUPC"/>
<meta property="og:site_name" content="Maps @ HackUPC"/>
<meta name="description" content="HackUPC ">
<meta property="og:description" content="Maps @ HackUPC"/>
<meta name="author" content="Hackers@UPC">
<script src="js/three.min.js"></script>
<script src="js/OrbitControls.js"></script>
<script src="js/app.js"></script>
<link rel="stylesheet" type="text/css" href="css/app.css" />
</head>
<body>
<div id="map-info" class="map-modal notdisplayed hidden">
<div id="map-info-body">
</div>
</div>
<div id="map-markerMenu" class="map-modal notdisplayed hidden">
<div>
<label>Tag:</label>
<input type="text" id="map-markerTag">
<label>#</label>
<input type="color" id="map-markerColor">
<div class="map-buttons">
<div id="map-markerCancel">Cancel</div>
<div id="map-markerCreate">Create</div>
</div>
</div>
</div>
<div id="map-shareMenu" class="map-modal notdisplayed hidden">
<div>
<label>Include markers:</label>
<input type="checkbox" id="map-includeMarkers">
<label>Camera position:</label>
<input type="checkbox" id="map-includeCameraPos">
<div class="map-buttons">
<div id="map-copyLink">Copy to clipboard!</div>
</div>
</div>
</div>
<div id="map-loading" class="map-modal ">
<!--<h1>Loading...</h1>-->
<img src="img/loading.png">
</div>
<main id="map-ui">
<header>
<a id="liveLink" href="http://hackupc.com/live">Live</a>
<div id="map-out"><span style="line-height: 40px; padding-right: 4px;">❮</span></div>
<h1 id="map-routeHeader"></h1>
<div id="map-helpbtn">?</div>
</header>
<div id="map-markerInfo" class="map-infoLine notdisplayed hidden">
<h2>Select marker location</h2>
</div>
<!--Articles represent views. Only one view active at a time-->
<article id="map-floors">
<section class="panel">
<ul class="map-buttonList">
<li data-change-floor="" data-link-hash="^[a-zA-Z0-9]+(\/)?$">*</li>
<li data-change-floor="3" data-link-hash="\w*(\/3)\b">2</li>
<li data-change-floor="2" data-link-hash="\w*(\/2)\b">1</li>
<li data-change-floor="1" data-link-hash="\w*(\/1)\b">E</li>
<li data-change-floor="0" data-link-hash="\w*(\/0)\b">0</li>
</ul>
</section>
</article>
<footer>
<div id="map-opts-list" class="notdisplayed hidden">
<ul>
<li id="map-addMarker">Add marker</li>
<li id="map-reset">Reset</li>
<li id="map-save">Save</li>
<li id="map-share">Share</li>
</ul>
</div>
<div id="map-opts">+</div>
</footer>
</main>
</body>
</html>