-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
58 lines (52 loc) · 1.57 KB
/
options.html
File metadata and controls
58 lines (52 loc) · 1.57 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Options</title>
<style>
body {
color: white;
}
.parent {
display: grid;
grid-template-columns: 3fr 1fr;
grid-template-rows: 1fr;
grid-column-gap: 10px;
grid-row-gap: 0px;
}
.div1 {
grid-area: 1 / 1 / 2 / 2;
}
.div2 {
grid-area: 1 / 2 / 2 / 3;
}
#coordsBtn{
border: 0px solid transparent;
width: 100%;
}
</style>
</head>
<body>
<h1>My Settings</h1>
<h4>Map Layer</h4>
<select name="mapLayer" id="mapLayer">
<option value="0">Google Maps</option>
<option value="1">Google Maps Satellite</option>
<option value="2">Open Street Maps</option>
<option value="3">Mapbox</option>
</select>
<h4>Location (Coordinates)</h4>
<div class="parent">
<div class="div1">
<input type="text" class="searchField" required id="location" placeholder="Coordinates">
</div>
<div class="div2">
<a href="searchLocation.html"><button class="button" id="coordsBtn">Search for coordinates</button></a>
</div>
</div>
<button class="button" style="margin-top: 10px; border: 0px solid transparent;" id="save">Save</button>
<script type="module" src="/src/options.ts"></script>
</body>
</html>