-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 1.42 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Test for MIPT</title>
<script src="https://cdn.jsdelivr.net/gh/openlayers/openlayers.github.io@master/en/v6.5.0/build/ol.js"></script>
<script src='https://unpkg.com/@turf/[email protected]/turf.min.js'></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/openlayers/openlayers.github.io@master/en/v6.5.0/css/ol.css" type="text/css">
<link rel="stylesheet" href="styles.css" type="text/css">
<style>
.map {
width: 90vw;
height: 80vh;
}
</style>
</head>
<body>
<div id="main">
<div>
<div class="panel" id="panel_draw">
<button class="button" id="button_new" onclick="drawObject()" title="Создать траекторию"></button>
<button class="button" id="button_delete" onclick="deleteObject()" title="Удалить траекторию"></button>
</div>
<div class="panel" id="panel_anim">
<button class="button" id="button_start" onclick="onSelect()" title="Запустить анимацию"></button>
<button class="button" id="button_stop" onclick="onStop()" title="Остановить анимацию"></button>
</div>
</div>
<p />
<div id="map" class="map"></div>
<p />
<script src="main.js"></script>
<p id="info" />
</div>
</body>
</html>