-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (58 loc) · 2.23 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
61
62
63
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/animate.min.css">
<link rel="stylesheet" href="styles/styles.css">
<link href="https://fonts.googleapis.com/css?family=Varela+Round" rel="stylesheet">
<title>RockMaps</title>
</head>
<body>
<h1 id='topRightLogo'>Climbing Route Finder</h1>
<div class='buttons'>
<img class = 'icon' id = 'filter' src="imgs/FIlter.png" alt="options">
<br>
<img class = 'icon' id='search-button' src="imgs/Search.png" alt="options">
</div>
<div id="menu" class="animated">
<h4>Filter Your Search</h4>
<div class="padding-bottom">
<h5>Search by:</h5>
<select id="search-by">
<option value="search-by-click">Map Click</option>
<option value="search-by-coords">Lat and Lng </option>
<option value="search-by-address">Address</option>
</select>
</div>
<div class="forms">
<div id="location" class="initiallyHidden">
<div id="coords">
<h5>Latitude</h5>
<input type="text" class = "clear" id="latTextInput" value="40.03">
<h5>Longitude</h5>
<input class = "clear" id ="lngTextInput" type = "text" value="-105.25">
</div>
<div id="address-form">
<h5>Address</h5>
<input class = "clear" id ="address" type = "text" value="New York">
</div>
</div>
<h5>How far away?</h5>
<input class = "clear" type="text" id="maxDistanceTextInput" value="50">
<h5>Minimum difficulty</h5>
<input class = "clear" type="text" id="minDiffTextInput" value="5.6">
<h5>Maximum difficulty</h5>
<input class = "clear" type="text" id ="maxDiffTextInput" value="5.10">
</div>
</div>
<div id="map">
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyC2F7hM_zRpnXkBjoqYwXsDThomJ8Z5brk&callback=initMap">
</script>
<script src="js/map.js"></script>
<script src="js/main.js"></script>
</body>
</html>