-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (46 loc) · 1.59 KB
/
index.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 lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/png" href="favicon.png?v=2" />
<title>Trip-Route</title>
<link rel="stylesheet" href="styles.css" />
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
</head>
<body>
<div class="sidepanel">
<div class="inputContainer">
<input id="start" type="text" placeholder="Where From" />
<div id="innerContainer" class="inputContainer"></div>
<input id="end" type="text" placeholder="Where To" />
</div>
<div class="iconContainer">
<span class="material-icons vehicle" id="foot">directions_walk</span>
<span class="material-icons vehicle" id="bike"> directions_bike </span>
<span class="material-icons vehicle" id="car"> directions_car </span>
</div>
<div class="textContainer">
<p id="by"></p>
<p id="dist"></p>
<p id="time"></p>
</div>
<div class="buttonContainer">
<button id="addStops" class="btn">Add Stops</button>
<button id="makeRoute" class="btn">Make Route</button>
</div>
</div>
<div id="map"></div>
<script src="jQuery.js"></script>
<script
async
defer
src="https://maps.googleapis.com/maps/api/js?libraries=geometry,places&callback=initMap"
></script>
<script src="index.js"></script>
<script src="jQscript.js"></script>
</body>
</html>