-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (57 loc) · 2.41 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
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>WiseMan</title>
<meta charset="UTF-8" />
<meta name="keywords" content="" />
<meta name="description" content="" />
<meta name="author" content="" />
<meta name="robots" content="noindex,nofollow,noarchive,noimageindex,notranslate" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"/>
<link rel="stylesheet" href="http://openlayers.org/en/v3.15.1/css/ol.css" type="text/css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css" type="text/css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" type="text/css">
<link rel="stylesheet" href="css/style.css" type="text/css">
<script src="http://openlayers.org/en/v3.15.1/build/ol.js"></script>
</head>
<body>
<div class="container">
<header>
<h1>WiseMan</h1>
</header>
<div class="row">
<div class="col-md-2">
<div id="info" style="display: none;"></div>
<label for="track">
Tracker ma position
<input id="track" type="checkbox"/>
</label>
<p>
Position : <code id="position"></code><br />
Vitesse : <code id="vitesse"></code>
</p>
</div>
<div class="col-md-10">
<div class="map" id="map">
</div>
</div>
</div>
<div class="row">
<footer>
<p>
Copyright © 2016<strong>Audric FEUYAN</strong>
</p>
</footer>
</div>
</div>
</body>
<script src="https://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="http://openlayers.org/en/v3.15.1/build/ol.js"></script>
<script src="js/wiseman.js"></script>
</html>