-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBaseMap.html
More file actions
102 lines (84 loc) · 2.78 KB
/
Copy pathBaseMap.html
File metadata and controls
102 lines (84 loc) · 2.78 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
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
<!-- /***************************************************************************************
* Title: Flight Data Visualization
* Author: Ishita Mathur and Neha Bhagwat
* Date: March 23, 2018
***************************************************************************************/ -->
<!DOCTYPE html>
<html>
<head>
<link rel="shortcut icon" type = "image/png" href="tinyLogo.png"/>
<title>FlyHigh Application</title>
<meta name="viewport" content="initial-scale=1.0">
<meta charset="utf-8">
<style>
/* Always set the map height explicitly to define the size of the div
* element that contains the map. */
#map {
height: 100%;
width: 70%;
}
/* Optional: Makes the sample page fill the window. */
html, body {
height: 100%;
margin: 0;
padding: 0;
}
</style>
<link rel="stylesheet" href="Routes.css">
</head>
<body>
<div id="map"></div>
<script src="plotsFinal.js">
</script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCgVgu8o_fYy3ycH6iX1pOU0BNJxotjl4Q&callback=initMap"
async defer></script>
<input type = "file" id="input" onchange="mainFun(this.files)" accept = "file_extension"/>
<logo>
<img src="FlyHighNew.jpeg" height = "50" width = "100">
</logo>
<div id="clock"></div>
<dropdown1>
<select onchange="selectFunction(this)">
<option value="">Select</option>
<option value="airports">All Airports</option>
<option value="routes">All Routes</option>
<option value="specificroute">Specific Route</option>
<option value="airline">Specific Airline</option>
<option value="explore">Explore</option>
</select>
</dropdown1>
<form id="srcdest">
<dropdown2>
<select name="selectSrc" id="selectSrc" onchange="selectedSrc()" hidden="true">
</select>
</dropdown2>
<dropdown3>
<select name="selectDest" id="selectDest" onchange="selectedDest()" hidden="true">
</select>
</dropdown3>
<button1>
<input type="button" id="routebutton" value="Show routes" onclick="routeButton()" hidden="true">
</button1>
<!-- <text1>
<label id="distance" hidden="true"></label>
</text1> -->
<dropdown4>
<select id = "selectAirline" onchange = "changedAirline()" hidden="true" onautocomplete="true">
</select>
</dropdown4>
<button2>
<input type="button" id="airlinebutton" value="Show routes" onclick="airlineButton()" hidden="true" />
</button2>
<button3>
<input type="button" id="resetbutton" value="Reset" onclick="resetButton()" hidden="true"/>
</button3>
<label1>
<label id="errorLabel" hidden="true">
</label>
</label1>
</form>
<!-- <text2>
<label id="airlinedisplay" hidden="true"></label>
</text2> -->
</body>
</html>