-
Notifications
You must be signed in to change notification settings - Fork 30
/
index.html
21 lines (20 loc) · 1.05 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.7/leaflet.css" />
<link rel="stylesheet" href="css/style.css">
</head>
<body style='border:0; margin: 0'>
<div id='map'></div>
<div class="formBlock">
<form id="form">
<input type="text" name="start" class="input" id="start" placeholder="Choose starting point" />
<input type="text" name="end" class="input" id="destination" placeholder="Choose starting point" />
<button style="display: none;" type="submit">Get Directions</button>
</form>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.7/leaflet.js"></script>
<script src="https://www.mapquestapi.com/sdk/leaflet/v2.2/mq-map.js?key=S8d7L47mdyAG5nHG09dUnSPJjreUVPeC"></script>
<script src="https://www.mapquestapi.com/sdk/leaflet/v2.2/mq-routing.js?key=S8d7L47mdyAG5nHG09dUnSPJjreUVPeC"></script>
<script src="app.js"></script>
</body>
</html>