-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patholdindex.html
70 lines (60 loc) · 2.4 KB
/
oldindex.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>
Tools
</title>
<link rel="stylesheet" href="assets/stylesheets/main.css">
<link href="https://fonts.googleapis.com/css?family=DM+Serif+Text&display=swap" rel="stylesheet">
</head>
<body>
<div class="armour">
<div class="helmet">
<div class="forehead">
<h1>MapGT Editor</h1>
</div>
<div class="left-ear">
</div>
<div class="left-eye">
</div>
<div class="nose">
</div>
<div class="right-eye">
</div>
<div class="right-ear">
</div>
</div>
<div class="where-the-action-happens">
<div class="right-hand">
<div class="tools">
<button type="button" name="button" id="select">Select</button>
<button type="button" name="button" id="line">Line</button>
<button type="button" name="button" id="rectangle">Rectangle</button>
<button type="button" name="button" id="polygon">Polygon</button>
<button type="button" name="button" id="image-upload">Upload Image</button>
<input type="file" class="image-upload" id="image-upload-input" onchange="handleImageUpload(this.files)"></input>
</div>
</div>
<div class="six-pack-abs">
<div id='canvas-container'>
</div>
</div>
<div class="left-hand">
</div>
</div>
</div>
<div class="shoes">
</div>
<script src="js/index.js"></script>
<!-- <script src="js/canvas/point.js"></script>
<script src="js/canvas/canvas.js"></script>
<script src="js/canvas/shape.js"></script>
<script src="js/selectorNode/selectorNode.js"></script>
<script src="js/tools/path.js"></script>
<script src="js/tools/rectangle.js"></script>
<script src="js/tools/polygon.js"></script>
<script src="js/tools/imageUpload.js"></script>
<script src="js/main.js"></script> -->
</body>
</html>