forked from Turistforeningen/leaflet-routing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (41 loc) · 1.66 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Routing in Leaflet</title>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7/leaflet.css" />
<!--[if lte IE 8]><link rel="stylesheet" href="libs/leaflet/leaflet.ie.css" /><![endif]-->
<link rel="stylesheet" href="app.css" />
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-38558206-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div id="search">
<strong>Søk:</strong> <input type="text" id="ssr-search">
</div>
<div id="export">
<strong>tp_id</strong>: <input type="text" id="eta-id">
<button id="eta-export">Eksport</button>
<button id="eta-import">Import</button>
</div>
<div id="map"></div>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://cdn.leafletjs.com/leaflet-0.7/leaflet.js"></script>
<script src="src/utils/LineUtil.Snapping.js"></script>
<script src="src/utils/Marker.Snapping.js"></script>
<script src="src/L.Routing.js"></script>
<script src="src/L.Routing.Storage.js"></script>
<script src="src/L.Routing.Draw.js"></script>
<script src="src/L.Routing.Edit.js"></script>
<script src="http://twitter.github.io/typeahead.js/releases/0.9.3/typeahead.min.js"></script>
<script src="app.js"></script>
</body>
</html>