forked from LuukS/API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.html
46 lines (40 loc) · 1.12 KB
/
api.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
45
46
<!DOCTYPE html>
<html><head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<meta name="apple-mobile-web-app-capable" content="yes">
<title>Lusc API</title>
<link rel="stylesheet" href="style.css" type="text/css">
<style type="text/css">
html {
width: 100%;
height: 100%;
font-family: 'Lucida Grande', Verdana, Geneva, Lucida, Arial, Helvetica, sans-serif;
}
body {
width: 100%;
height: 100%;
margin: 0px;
}
#map {
width: 100%;
height: 100%;
}
.olControlAttribution {
bottom: 3px!important;
background-color: #eee;
}
</style>
<script src="./OpenLayers.js"></script>
<script src="lusc-api.js"></script>
<script>
function init() {
var o = OpenLayers.Util.getParameters();
new Lusc.Api(o);
}
</script>
</head>
<body onload="init()">
<div id="map"></div>
</body>
</html>