forked from Project-OSRM/osrm-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (25 loc) · 1.16 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
<html>
<head>
<meta charset="utf-8" />
<title>Open Source Routing Machine - Demo</title>
<link href='https://www.mapbox.com/base/latest/base.css' rel='stylesheet' />
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no' />
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css" />
<script src="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.js"></script>
<!--script src="js/leaflet-src.js"></script-->
<link rel="stylesheet" href="css/Control.Geocoder.css" />
<script src="js/Control.Geocoder.js"></script>
<link rel="stylesheet" href="css/leaflet-routing-machine.css" />
<script src="js/leaflet-routing-machine.js"></script>
<link rel="stylesheet" href="css/leaflet.label.css" />
<script src="js/leaflet.label.js"></script>
<link rel="stylesheet" href="css/mapbox.directions.css" />
<link rel="stylesheet" href="css/site.css" />
</head>
<body>
<div id='map'></div>
<!--a href="http://mapbox.com/" class='mapbox-maplogo' target="_blank">Mapbox</a-->
<!-- Local scripts -->
<script src="js/osrm.dev.js"></script>
</body>
</html>