-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (44 loc) · 2.08 KB
/
index.html
File metadata and controls
48 lines (44 loc) · 2.08 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
<!DOCTYPE html>
<html>
<head>
<title>Randrive</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css"></link>
<link href="https://unpkg.com/leaflet@1.6.0/dist/leaflet.css" rel="stylesheet"/>
<script src="https://unpkg.com/leaflet@1.6.0/dist/leaflet.js"></script>
<link rel="icon" type="image/x-icon" href="./favicon.jpeg">
</head>
<body>
<h1>Randrive</h1>
<div class="layout">
<div class="form_panel">
<div class="api_key_field">
<div class="message">Grab your API key at <a href="https://geocode.maps.co/account">geocode.maps.co</a></div>
<input type="text" class="api_key" placeholder="Enter your API key">
</div>
<div class="less">
<input type="text" class="location" placeholder="Initial location">
<button class="btnMore">More</button>
</div>
<div class="more">
<input type="text" class="street" placeholder="Street">
<input type="text" class="city" placeholder="City">
<input type="text" class="state" placeholder="State">
<input type="text" class="country" placeholder="Country">
<input type="text" class="postalcode" placeholder="Postalcode">
<button class="btnLess">Less</button>
</div>
<div class="radius_field">
<input type="text" class="radius" placeholder="Radius of random search in km">
<button class="radius_btn">KM</button>
</div>
<div class="submit">
<div class="api_err"></div>
<input type="submit" class="generate" value="Generate">
</div>
</div>
<div class="osm_map"></div>
</div>
<script src="./script.js"></script>
</body>
</html>