-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (24 loc) · 938 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<link rel="stylesheet" href="dependencies/ol.css" type="text/css">
<link rel="stylesheet" href="style.css" type="text/css">
<script src="dependencies/ol.js"></script>
<script src="dependencies/jsts.js"></script>
<title>Polygon with Holes Split by a line</title>
</head>
<body>
<div class = "container">
<div class = "toolbar">
<button id = "btn2" title = "Draw Polygon" geomtype = "Polygon"></button>
<button id = "btn1" title = "Split Polygon" geomtype = "LineString"></button>
<button id = "btn4" title = "Move Feature"></button>
<button id = "btn3" title = "Clear Graphics"></button>
</div>
<div id="map" class="map">
<div id = "popup"></div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>