This repository has been archived by the owner on May 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
prototype.html
46 lines (45 loc) · 2.16 KB
/
prototype.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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Mapathon - Mapping upcoming and past hackathons by month</title>
<link href='http://fonts.googleapis.com/css?family=Pacifico' rel='stylesheet' type='text/css'>
<link href="./css/style.css" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
<script src="./js/main.js"></script>
<script src="./js/buttons.js"></script>
</head>
<body>
<button id="locationControlDiv"><i class="material-icons">gps_fixed</i></button>
<div id="map_canvas"></div>
<div id="arrow"></div>
<div id="container">
<select id="yearSelect" onchange="hideIf2014IsChosen()">
<option value="" disabled selected>Year</option>
<option value='2014'> 2014 </option>
<option value='2015'> 2015 </option>
<option value='2016'> 2016 </option>
<option value='2017'> 2017 </option>
<option value='2018'> 2018 </option>
</select>
<button id="btn" onclick="getMarkerFromChosenTime()" class="action-button shadow animate blue">Lets Go!</button>
<select id="monthSelect" onchange="clearAllMarkersAndInfo()">
<option value="" disabled selected>Month</option>
<option value="01" class="hideIf2014">January</option>
<option value="02" class="hideIf2014">February</option>
<option value="03" class="hideIf2014">March</option>
<option value="04" class="hideIf2014">April</option>
<option value="05" class="hideIf2014">May</option>
<option value="06" class="hideIf2014">June</option>
<option value="07" class="hideIf2014">July</option>
<option value="08">August</option>
<option value="09">September</option>
<option value="10">October</option>
<option value="11">November</option>
<option value="12" class="hideIf2014">December</option>
</select>
</div>
<p> Send any bugs you notice to github.com/mding5692/mapathon as an issue please </p>
</body>
</html>