-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·98 lines (91 loc) · 3.21 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="initial-scale=1,user-scalable=no,maximum-scale=1,width=device-width"
/>
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="" />
<meta name="author" content="" />
<title>Leaflet Starter Boilerplate</title>
<!-- link the css files -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.0.3/leaflet.css"
/>
<link
rel="stylesheet"
href="https://unpkg.com/[email protected]/dist/leaflet.css"
/>
<link href="css/app.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="css/app.css" />
</head>
<body>
<div class="layout">
<header>
<div id="burger">
<span></span>
<span></span>
<span></span>
</div>
<p>MST KRUSKAL</p>
</header>
<main>
<div id="map">
<h1>Choose cities and calculate MST</h1>
</div>
<div class="control" id="control">
<h2 style="margin-left: 20px;">Choose cities</h2>
<ul class="cities-list">
</ul>
<button id="startEngine">Calculate MST by KRUSKAL</button>
</div>
</main>
<footer>
<p>MST Calculator <a href="https://29-digits.abmco.kz/" target="_blank">29Digits Studio</a></p>
<p>
Project on <a href="https://github.com/PolyAtomicIon/mst-kruskal-interactive" target="_blank">GitHub</a>
</p>
</footer>
</div>
<!-- <div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<div class="navbar-icon-container">
<a href="#" class="navbar-icon pull-right visible-xs" id="nav-btn">
<i class="fa fa-bars fa-lg white"></i>
</a>
</div>
<a class="navbar-brand" href="#">MST KRUSKAL</a>
</div>
</div>
</div>
<div id="container">
<div class="row">
<div class="col-9 left-map">
<div id="map"></div>
</div>
<div class="col-3 control">
<h2>Cities</h2>
<ul class="cities-list">
</ul>
<button id="startEngine" class="btn btn-lg btn-danger mt-3 align-center">Calculate MST by KRUSKAL</button>
</div>
</div>
</div> -->
<!-- link to the js files -->
<script src="https://code.jquery.com/jquery-3.2.0.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.0.3/leaflet.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet-ant-path.min.js"></script>
<script src="https://unpkg.com/polyline-encoded"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet-routing-machine/3.2.12/leaflet-routing-machine.min.js"></script>
<script src="js/app.js"></script>
<script src="js/MST.js"></script>
<script src="js/header.js"></script>
</body>
</html>