-
Notifications
You must be signed in to change notification settings - Fork 0
/
XYset.html
42 lines (41 loc) · 1.08 KB
/
XYset.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
<!DOCTYPE html>
<html>
<head>
<title>XYset</title>
<meta charset="utf-8" />
<style>
h1 {color:red}
</style>
<body>
<h1>XYset</h1>
Input XY in EPSG:900913 (Google Maps Global Mercator)
<form action="xyset" method="post">
<div>
<label for="startX">startX:</label>
<input type="text" id="startX" name="startX"/>
</div>
<div>
<label for="startY">startY:</label>
<input type="text" id="startY" name="startY"/>
</div>
<div>
<label for="endX">endX:</label>
<input type="text" id="endX" name="endX"/>
</div>
<div>
<label for="endY">endY:</label>
<input type="text" id="endY" name="endY"/>
</div>
<div class="button">
<button type="submit">submit</button>
</div>
</form>
<form action="xyexchange" method="post">
<div class="button">
<button type="submit">Start/End Exchange</button>
</div>
</form>
To find XY in ESPG:900913
<a href="https://epsg.io/map#srs=900913&x=14251033.901267&y=4391651.549374&z=8" target="_blank">Visit Here(epsg.io)</a>
</body>
</html>