-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (32 loc) · 1.09 KB
/
index.html
File metadata and controls
51 lines (32 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript"
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDUoKMjgQbskgxkdWWlxNAaHp672Jq08Jg">
</script>
<script src="https://code.jquery.com/jquery-2.1.4.js"></script>
<script src="jv.js"></script>
<link rel="stylesheet" type="text/css" href="api.css">
<title>Venue Finder</title>
</head>
<body>
<h1 class = "head">Venue Finder</h1>
<h2 class ="head">Powered by Foursquare and Google Maps</h2>
<input placeholder = "Type your address" id ="ip"> </input>
<input placeholder = "Type search here" id ="q"> </input>
<button id = "submit">Search</button>
<button id = "clear">Clear</button>
<div>
<strong>Mode of Travel: </strong>
<select id="mode" onchange="calcRoute()">
<option value="DRIVING">Driving</option>
<option value="WALKING">Walking</option>
<option value="BICYCLING">Bicycling</option>
<option value="TRANSIT">Transit</option>
</select>
</div>
<ul id = "print">
</ul>
<div id="map-canvas" style="width: 800px; height: 500px"></div>
</body>
</html>