-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmapWebpage.html
More file actions
29 lines (29 loc) · 1.09 KB
/
mapWebpage.html
File metadata and controls
29 lines (29 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>PEV Team</title>
<link rel="stylesheet" type="text/css" href="css/map.css"></link>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDLnF0RwcwqWQtnZwyjwe0V0qJjmJmnH1c"></script>
<script type="text/javascript" src="lib/jquery.js"></script>
<script type="text/javascript" src="lib/jquery.csv-0.71.js"></script>
<script type="text/javascript" src="js/map.js"></script>
<script src="http://malsup.github.com/jquery.form.js"></script>
</head>
<body>
<div id="map-canvas"></div>
<div id="input">
<form id="taxi-data">
<div>
<label for="pickup-csv-file">Pickup file</label>
<input type="file" id="pickup-csv-file" name="pickup-file" />
</div>
<div>
<label for="dropoff-csv-file">Dropoff file</label>
<input type="file" id="dropoff-csv-file" name="dropoff-file" />
</div>
<input type="submit" value="Submit">
</form>
</div>
</body>
</html>