-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (41 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="leaflat/leaflet.css" rel="stylesheet">
<link href="index.css" rel="stylesheet">
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
<title>Title</title>
</head>
<body>
<button id="presentation" type="button" class="btn btn-primary">Режим презентации</button>
<button id="stoppresentation" type="button" class="btn btn-danger">Остановить</button>
<div id="mapid"></div>
<div>
<form>
<div class="form-group">
<input class="form-control" id="filter" aria-describedby="emailHelp" placeholder="Фильтр">
</div>
</form>
</div>
<div id="infotablecontainer">
<table class="table table-inverse">
<thead>
<tr>
<th>#</th>
<th>Название</th>
<th>Данные</th>
</tr>
</thead>
<tbody id="infotable">
</tbody>
</table>
</div>
</body>
<script src="leaflat/leaflet.js"></script>
<script src="leaflat/leaflet.geocsv.js"></script>
<script src="jquery/jquery-3.2.1.js"></script>
<script src="jquery/jquery.cookie.js"></script>
<script src="index.js"></script>
</html>