-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (58 loc) · 1.76 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>latlong</title>
<meta
name="viewport"
content="initial-scale=1,maximum-scale=1,user-scalable=no"
/>
<link
rel="stylesheet"
href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha256-kLaT2GOSpHechhsozzB+flnD+zUyjE2LlfWPgU04xyI="
crossorigin=""
/>
<!-- Make sure you put this AFTER Leaflet's CSS -->
<script
src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha256-WBkoXOwTeyKclOHuWtc+i2uENFpDZ9YPdf5Hf+D7ewM="
crossorigin=""
></script>
<link href="style.css" rel="stylesheet" />
</head>
<body>
<header>
<div id="coordinates">
<form class="pure-form">
<fieldset>
<legend>Coordinate</legend>
<label for="latitude">Latitude</label>
<input id="txtLatitude" placeholder="Latitude" readonly />
<label for="longitude">Longitude</label>
<input id="txtLongitude" placeholder="Longitude" readonly />
<a href="#" id="lnkReset">reset</a>
</fieldset>
<fieldset>
<legend>Get position</legend>
<label for="drag"
>Drag marker <input type="radio" name="radioModes[]" id="drag"
/></label>
|
<label for="changeByText"
>Edit coordinate
<input type="radio" name="radioModes[]" id="changeByText"
/></label>
|
<a href="#" id="lnkGetPositionbyBrowser">By browser</a>
</fieldset>
</form>
<div id="messages"></div>
</div>
</header>
<main>
<div id="map"></div>
</main>
<script src="index.js"></script>
</body>
</html>