This repository has been archived by the owner on Aug 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
indoorz6.html
89 lines (83 loc) · 2.85 KB
/
indoorz6.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
87
88
89
<!DOCTYPE html>
<html>
<head>
<!-- Meta -->
<meta charset="utf-8">
<link rel="shortcut icon" href="ind-logo-30x30.ico">
<title>InDoorZ - Where are you going?</title>
<!-- Viewport for Responsivity -->
<meta name="viewport" content="width=100%, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="description" content="Map of Evans Building.">
<!-- Stylesheets -->
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/map.css">
<link rel="stylesheet" type="text/css" href="mapplic/mapplic.css">
<link rel="stylesheet" type="text/css" href="css/indoorz.css">
<!-- Internet Explorer -->
<!--[if lt IE 9]>
<link rel="stylesheet" type="text/css" href="mapplic/mapplic-ie.css">
<script type="text/javascript" src="js/html5shiv.js"></script>
<![endif]-->
<!-- Scripts -->
<script type="text/javascript" src="js/jquery-1.11.0.min.js"></script>
<!--
<script type="text/javascript" src="js/jquery.mobile-1.3.1.js"></script>
-->
<!--<script src="http://json.org/json2.js"></script>-->
<script type="text/javascript" src="js/jquery.mockjax.js"></script>
<script type="text/javascript" src="js/hammer.js"></script>
<script type="text/javascript" src="js/jquery.easing.js"></script>
<script type="text/javascript" src="js/jquery.mousewheel.js"></script>
<script type="text/javascript" src="mapplic/mapplic.js"></script>
<script type="text/javascript" src="js/indoorz.js"></script>
</head>
<body>
<div id="topmostnav" class="navbar navbar-static-top">
<div class="container">
<table><tr><td>
<img src="ind-logo-80x80.png" alt="" />
</td><td>
<h2><center>InDoorZ</center>
Where are you going?</h2>
<center><button id="helpme">Request Assistance</button></center>
</td></tr></table>
</div>
</div>
<!-- Site content -->
<div id="content">
<!-- Map -->
<div class="map-container">
<div id="mapplic"></div>
<center><input type="text" width="60" name="directions4"
value="Turn right and walk down the hall"></center>
<a href="indoorz5.html"><button id="next1">Previous Step</button></a>
<a href="indoorz7.html"><button id="next1">Next Step</button></a>
</div>
</div>
<!-- Site footer -->
<span>Copyright © 2015 - <a href="http://mkobar.github.io/InDoorZ">InDoorZ</a></span>
<script type="text/javascript">
$(document).ready(function() {
$('#mapplic').mapplic({
source: 'evans6.json',
sidebar: false,
minimap: true,
locations: true,
deeplinking: true,
fullscreen: true,
hovertip: true,
developer: false,
//developer: true,
maxscale: 4
});
});
</script>
</body>
</html>