-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatamaps_world_test.html
29 lines (25 loc) · 1.21 KB
/
datamaps_world_test.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
<!DOCTYPE html>
<head>
<meta charset="utf-8"/>
<script src="https://d3js.org/d3.v3.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/topojson/3.0.2/topojson.min.js"></script>
<script src="./datamaps.world.hires.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
</head>
<h1 style="text-align: center">Puerto Rico Incoming/Outgoing Flights By Year</h1>
<div id="container" style="position: relative; width: 1300px; height: 700px;"></div>
<fieldset>
<legend>Configuration Options:</legend>
<form id="validationForm">
<span>Select year to filter by: </span><input type="number" id="year" min="1990" max="2021" step="1" required placeholder="1990 - 2021"/>
<br><br>
<input type="radio" id="incoming" name="flight_type" value="Incoming" required>
<label for="incoming">Incoming Flights to PR</label><br>
<input type="radio" id="outgoing" name="flight_type" value="Outgoing" required>
<label for="outgoing">Outgoing Flights from PR</label><br>
<br><br>
<button type="button" id="yearButton">Get Flights Info</button>
</form>
</fieldset>
<script src="./helper_functions.js"></script>
</html>