forked from tyrasd/overpass-turbo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
map.html
35 lines (35 loc) · 1.26 KB
/
map.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
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" lang="en"></meta>
<meta name="viewport" content="width=device-width;" />
<link rel="icon" href="turbo.png" type="image/png" />
<title>overpass turbo - map</title>
<!--jQuery-->
<script src="http://code.jquery.com/jquery-2.0.0.js"></script>
<!--leaflet-->
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.5.1/leaflet.css" />
<script src="http://cdn.leafletjs.com/leaflet-0.5.1/leaflet.js"></script>
<!--leaflet extensions-->
<script src="js/OSM4Leaflet.js"></script>
<!--jsmapcss-->
<script src="js/jsmapcss/styleparser.js"></script>
<script src="js/jsmapcss/Condition.js"></script>
<script src="js/jsmapcss/Rule.js"></script>
<script src="js/jsmapcss/RuleChain.js"></script>
<script src="js/jsmapcss/Style.js"></script>
<script src="js/jsmapcss/StyleChooser.js"></script>
<script src="js/jsmapcss/StyleList.js"></script>
<script src="js/jsmapcss/RuleSet.js"></script>
<!--own scripts and styles-->
<script src="js/overpass.js"></script>
<link rel="stylesheet" href="css/map.css" />
<script src="js/map.js"></script>
</head>
<body>
<!--map-->
<div id="map"></div>
<!--wait spinner-->
<div class="modal"></div>
</body>
</html>