-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (38 loc) · 1.5 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
<!DOCTYPE html>
<html>
<head>
<title>
Adaptics - non-geographical maps
</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="image/x-icon" href="docs/images/favicon.ico" />
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.4.0/dist/leaflet.css" integrity="sha512-puBpdR0798OZvTTbP4A8Ix/l+A4dHDD0DGqYW6RQ+9jxkRFclaxxQb/SJAWZfWAkuyeQUytO7+7N4QKrDh+drA==" crossorigin=""/>
<style media="screen">
html, body {
height: 100%
}
.bottom-drawer {
height: 75px;
}
</style>
<script src="https://unpkg.com/leaflet@1.4.0/dist/leaflet.js" integrity="sha512-QVftwZFqvtRNi0ZyCtsznlKSWOStnDORoefr1enyq5mVL4tmKB3S/EnC3rRJcxCPavG10IcrVGSmPh6Qw5lwrg==" crossorigin=""></script>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tween.js/16.3.5/Tween.min.js"></script>
<script src="/assets/L.Path.Drag.js"></script>
<script
src="https://code.jquery.com/jquery-3.4.0.slim.js"
integrity="sha256-milezx5lakrZu0OP9b2QWFy1ft/UEUK6NH1Jqz8hUhQ="
crossorigin="anonymous"></script>
</head>
<body>
<div id="mapid" style="width: 100%; height: calc(100% - 75px)"></div>
<div class="bottom-drawer">
<a href="#" id="drawFreeForm">Free Form</a> ·
<a href="#" id="draw2x2">Draw 2X2</a> ·
<a href="#" id="drawSizeSort">Horizontal Sort by Size</a> ·
<a href="#" id="drawAgeSort">Vertical Sort by Age</a>
</div>
<script src="/assets/app.js"></script>
</body>
</html>