-
Notifications
You must be signed in to change notification settings - Fork 65
/
api.html
53 lines (52 loc) · 1.09 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
47
48
49
50
51
52
53
<html>
<head>
<title>OpenLayers Editor</title>
<link rel="stylesheet" type="text/css" href="style/style.css" />
<meta charset="utf-8" />
</head>
<body>
<div id="app">
<div id="header">
<nav>
<div id="brand">OpenLayers Editor</div>
<div id="links">
<a href="index.html">Demo</a>
<a href="#" class="active">API</a>
<a
target="_blank"
href="https://github.com/geops/openlayers-editor"
>
Code
</a>
</div>
</nav>
</div>
<iframe ref="iframe" src="doc/index.html"> </iframe>
<div id="promo">
<a href="http://geops.de/karriere" target="_blank">
<div id="promo-text">Join the team!</div>
</a>
</div>
</div>
</body>
</html>
<style scoped>
iframe {
position: relative;
border: 0;
width: 100%;
height: 90%;
}
h1,
h2 {
font-weight: normal;
}
ul {
list-style-type: none;
padding: 0;
}
li {
display: inline-block;
margin: 0 10px;
}
</style>