-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (37 loc) · 1.21 KB
/
index.html
File metadata and controls
37 lines (37 loc) · 1.21 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + TS</title>
<link rel="stylesheet" href="/src/style/style.css" />
</head>
<body>
<div class="flex flex-col h-screen" style="background-color: #3b4453">
<div class="flex gap-2">
<button
id="single-btn"
class="text-white text-sm px-3 py-1.5 rounded-md border border-gray-300 hover:bg-gray-100 transition-all shadow-sm"
>
Single Point
</button>
<button
id="polyline-btn"
class="text-white text-sm px-3 py-1.5 rounded-md border border-gray-300 hover:bg-gray-100 transition-all shadow-sm"
>
Polyline
</button>
<button
class="text-white text-sm px-3 py-1.5 rounded-md border border-gray-300 hover:bg-gray-100 transition-all shadow-sm"
>
Polygon
</button>
</div>
<div class="p-4 h-full">
<canvas id="canvas" class="canvas"></canvas>
</div>
</div>
<script type="module" src="/src/app.ts"></script>
</body>
</html>