-
Notifications
You must be signed in to change notification settings - Fork 1
/
geotrash.html
103 lines (90 loc) · 3.87 KB
/
geotrash.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html>
<head>
<title>GeoTrash</title>
<!-- Meta Tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="description" content="EcoMake 2018 Purdue">
<!-- Leaflet Tags -->
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.3.4/dist/leaflet.css"
integrity="sha512-puBpdR0798OZvTTbP4A8Ix/l+A4dHDD0DGqYW6RQ+9jxkRFclaxxQb/SJAWZfWAkuyeQUytO7+7N4QKrDh+drA=="
crossorigin=""/>
<link rel="stylesheet" href="https://unpkg.com/leaflet-routing-machine@latest/dist/leaflet-routing-machine.css" />
<script src="https://unpkg.com/leaflet@1.3.4/dist/leaflet.js"
integrity="sha512-nMMmRyTVoLYqjP9hrbed9S+FzjZHW5gY1TWCHA5ckwXZBadntCNs8kEqAWdrb9O7rxbCaA4lKTIWjDXZxflOcA=="
crossorigin=""></script>
<script src="https://unpkg.com/leaflet-routing-machine@latest/dist/leaflet-routing-machine.js"></script>
<!-- Other Tags -->
<link type="text/css" rel="stylesheet" href="public/geotrashStylesheet.css">
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/jquery-ui.css">
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
</head>
<body>
<div id="header">
<div id="logo">
<div id="logoPic">
<img src="Images/GeoTrashLogo.png"/>
</div>
<div id="logoText" style="padding-top: 2.5vh"><h1>GeoTrash</h1></div>
</div>
</div>
<div id="transitionHeader"></div>
<div id="main">
<div id="findRecyclingWindow">
<p>What would you like to recycle? </p>
<div class="selectForm">
<select id="findDropdown">
<option value="paper">Paper/Cardboard</option>
<option value="plastic">Plastic</option>
<option value="metal">Metals</option>
<option value="glass">Glass</option>
<option value="batteries">Batteries/Bulbs</option>
<option value="electronics">Miscellaneous Electronics</option>
</select>
<div id="routeButton" onclick="route()">Route</div>
</div>
<div id="map"></div>
<div id="reportRecyclingButton" onclick="showRecyclingReport()">
<h3>Add Recycling Bin</h3>
</div>
</div>
</div>
<div id="reportRecyclingWindow">
<p> If you're in a building, what floor are you on? </p>
<select id="floorDropdown">
<option value="-1">Not In Building</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
</select>
<div id="whatCan">
This bin accepts:
<input class="whatCanBox" type="checkbox" name="Paper" value = '1' checked> Paper/Cardboard
<input class="whatCanBox" type="checkbox" name="Plastic" value = '2' checked> Plastic
<input class="whatCanBox" type="checkbox" name="Metal" value = '4' checked> Metal
<input class="whatCanBox" type="checkbox" name="Glass" value = '8' checked> Glass
<input class="whatCanBox" type="checkbox" name="Batteries" value = '16'> Batteries
<input class="whatCanBox" type="checkbox" name="Electronics" value = '32'> Electronics
</div>
<div id="reportRecyclingSubmitButton" onclick="addBin()">
<h3>Submit</h3>
</div>
</div>
<div id="transitionFooter"></div>
<div id="footer">
Copyright 2018 Ecomake Team 9
</div>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script type="text/javascript" src="public/frontDesign.js"></script>
<script type="text/javascript" src="public/script.js"></script>
<script type="text/javascript" src="public/map.js"></script>
</html>