-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (31 loc) · 935 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
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>GetMap Scale Calculator</title>
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<div class="row">
<div class="column" >
<h1>GetMap Scale Calculator</h1>
<div>
<label for="GetMapUrl">GetMap URL</label>
<textarea type="text" id="GetMapUrl" name="GetMapUrl" placeholder="WMS GetMap URL"></textarea>
<div id="error"></div>
<button id="zoomto">zoom to bbox</button>
</div>
<div id="result">
</div>
<div id="resultImage">
<div id="ImageLoader"></div>
<img id="GetMapImage"></img>
</div>
</div>
<div class="column">
<div id="map"></div>
</div>
</div>
<script src="./index.js"></script>
</body>
</html>