-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (65 loc) · 4.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SONECHKA</title>
<link rel="stylesheet" href="style.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
</head>
<body>
<div class="sidebar">
<div >
<div class="mb-3" style="display: inline-block;">
<input class="form-control form-control-lg" type="text" id="destination" placeholder="Поиск мест..." style="display: inline-block;">
</div>
<button class="image-button" id="arrow-button"></button>
</div>
<div id="hide" style="display: inherit;">
<div class="mb-3 form-check form-switch" id='interesting_places'>
<input class="form-check-input" type="checkbox" role="switch" id="flexSwitchCheckChecked">
<label class="form-check-label" for="flexSwitchCheckChecked ">Интересные(все)</label>
</div>
<div class="mb-3 form-check form-switch " id='architecture'>
<input class="form-check-input" type="checkbox" role="switch" id="flexSwitchCheckChecked">
<label class="form-check-label" for="flexSwitchCheckChecked ">Архитектура</label>
</div>
<div class="mb-3 form-check form-switch " id='natural'>
<input class="form-check-input" type="checkbox" role="switch" id="flexSwitchCheckChecked">
<label class="form-check-label" for="flexSwitchCheckChecked">Природные</label>
</div>
<div class="mb-3 form-check form-switch" id='industrial_facilities'>
<input class="form-check-input" type="checkbox" role="switch" id="flexSwitchCheckChecked">
<label class="form-check-label" for="flexSwitchCheckChecked">Индустриальные</label>
</div>
<div class="mb-3 form-check form-switch" id='religion'>
<input class="form-check-input" type="checkbox" role="switch" id="flexSwitchCheckChecked">
<label class="form-check-label" for="flexSwitchCheckChecked">Религиозные</label>
</div>
<div class="mb-3 form-check form-switch" id='cultural'>
<input class="form-check-input" type="checkbox" role="switch" id="flexSwitchCheckChecked">
<label class="form-check-label" for="flexSwitchCheckChecked">Культурные</label>
</div>
<div class="mb-3 form-check form-switch" id='historic'>
<input class="form-check-input" type="checkbox" role="switch" id="flexSwitchCheckChecked">
<label class="form-check-label" for="flexSwitchCheckChecked">Исторические</label>
</div>
<button class="image-button" id="findRouteBtn">Маршрут</button>
<button class="image-button" id="clearRoute">Очистить</button>
<div class="mb-3">
<label for="customRange3" class="form-label" style="margin-bottom: 0px; margin-top: 10px;" id = "sliderLabel">Допустимое отклонение: 600м</label>
<input type="range" class="form-range" min="0" value="600" max="700" step="50" id="customRange3">
</div>
</div>
</div>
<div id="container"></div>
<div id="tooltip">awd</div>
<div id="status"></div>
<script src="https://mapgl.2gis.com/api/js/v1"></script>
<script src="https://unpkg.com/@2gis/mapgl-directions@^2/dist/directions.js"></script>
<script src="https://unpkg.com/@2gis/mapgl-ruler@^1/dist/ruler.js"></script>
<script src="utils.js"></script>
<script src="script.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/js/bootstrap.bundle.min.js" integrity="sha384-pprn3073KE6tl6bjs2QrFaJGz5/SUsLqktiwsUTF55Jfv3qYSDhgCecCxMW52nD2 " crossorigin="anonymous "></script>
</body>
</html>