-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.htm
71 lines (67 loc) · 2.43 KB
/
index.htm
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta name="MSSmartTagsPreventParsing" content="TRUE" />
<meta name="copyright" content="see mirkarte.js" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>MirKarte (Beta)</title>
<meta name="robots" content="noindex, nofollow" />
<link rel="stylesheet" type="text/css" href="leaflet/leaflet.css" />
<link rel="stylesheet" type="text/css" href="leaflet-compass/leaflet-compass.css" />
<link rel="stylesheet" type="text/css" href="leaflet-gps/leaflet-gps.css" />
<link rel="stylesheet" type="text/css" href="mirkarte.css" />
<style type="text/css"><!--/*--><![CDATA[/*><!--*/
html, body {
position:fixed;
overflow:hidden;
width:100%;
height:100%;
margin:0px;
}
#nomap {
padding:12px;
margin:12px;
border:1px solid black;
width:24em;
}
#map {
height:100%;
width:100%;
position:relative;
}
#map_wrapper {
position:absolute;
top:0; left:0;
bottom:0; right:0;
-webkit-overflow-scrolling:touch;
}
/*]]>*/--></style>
<script type="text/javascript" src="leaflet/leaflet.js"></script>
<script type="text/javascript" src="leaflet-compass/leaflet-compass.js"></script>
<script type="text/javascript" src="leaflet-gps/leaflet-gps.js"></script>
<script type="text/javascript" src="prototype/prototype.js"></script>
<script type="text/javascript" src="togeojson/togeojson.js"></script>
<script type="text/javascript" src="zip.js/WebContent/zip.js"></script>
<script type="text/javascript"><!--//--><![CDATA[//><!--
zip.workerScriptsPath = "zip.js/WebContent/";
mirkarte_default_loc = [50.7, 7.11, 12];
mirkarte_hookfn = function (map) {
};
//--><!]]></script>
<!-- see apikeys.js.example about this -->
<script type="text/javascript" src=".apikeys.js"></script>
<script type="text/javascript" src="mirkarte.js"></script>
</head><body>
<div id="map_wrapper">
<div id="map">
<p id="nomap">
This is an interactive map application called “MirKarte”.
Unfortunately, it is implemented completely client-side
in JavaScript — so, you have to enable that, and use a
GUI webbrowser supported by Leaflet and Prototype.
</p>
</div>
</div>
</body></html>