-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 803 Bytes
/
index.html
File metadata and controls
26 lines (26 loc) · 803 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Shape Dropper</title>
<link rel="stylesheet" href="ol.css" type="text/css">
<script src="ol-debug.js"></script>
</head>
<body>
<form class="form-inline">
<div>
<p id="coordinates">Shape coordinates will appear here once shape is drawn. </p>
</div>
<label>Shape type </label>
<select id="type">
<option value="Square">Square</option>
<option value="Triangle">Triangle</option>
<option value="Hexagon">Hexagon</option>
<option value="Star">Star</option>
<option value="None">None</option>
</select>
</form>
<div id="map" class="map"></div>
<script src="shapeDropper.js"></script>
</body>
</html>