-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
148 lines (112 loc) · 3.92 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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--<script src="http://google-code-prettify.googlecode.com/svn/loader/run_prettify.js?skin=sunburst"></script>
<script src="http://google-code-prettify.googlecode.com/svn/trunk/src/prettify.js"></script>
<link rel="stylesheet" type="text/css"
href="http://google-code-prettify.googlecode.com/svn/loader/skins/sunburst.css">
-->
<link rel="stylesheet" media="screen" href="css/bootstrap.min.css"/>
<link rel="stylesheet" media="screen" href="css/bootstrap-theme.min.css"/>
<link rel="stylesheet" media="screen" href="css/leaflet.css"/>
<!--link rel="stylesheet" media="screen" href="css/map.css"/-->
<style type="text/css">
.vspaceafter {
margin-bottom: 1em;
}
.bs-callout {
border-color: #eee;
border-image: none;
border-radius: 3px;
border-style: solid;
border-width: 1px 1px 1px 5px;
margin: 20px 0;
padding: 20px;
}
.bs-callout-warning {
border-left-color: #f0ad4e;
}
.bs-callout-warning h4 {
color: #f0ad4e;
}
.bs-callout h4 {
margin-bottom: 5px;
margin-top: 0;
}
.popover {
color: #000000;
}
#map-container {
height: 400px;
}
#foi_tbody td.e_foi_sf {
max-width: 20em;
}
.e_foi_sf div {
max-width: 15em;
overflow: hidden;
text-overflow: ellipsis;
}
/* cf. https://github.com/Leaflet/Leaflet/issues/845 */
.leaflet-control-layers-expanded {
max-height: 300px; /*less than map height! */
overflow: auto;
}
body {
padding: 0;
margin: 0;
}
html, body, #map {
height: 100%;
width: 100%;
}
#observation_result {
background: black none repeat scroll 0 0;
border-radius: 0 15px 0 0;
bottom: 0;
color: rgb(247, 251, 255);
font-size: 11px;
height: 100px;
left: 0;
margin: 0 auto;
opacity: 0.8;
padding: 5px;
position: absolute;
width: 50%;
}
#observation_result div {
float: left;
padding: 0;
width: 50%;
}
</style>
<script src="js/spin.min.js"></script>
<script src="js/jquery.min.js"></script>
<script language="javascript" src="js/bootstrap.min.js"></script>
<!-- <script src="/jsi18n"></script>
<script src="js/config.js"></script> -->
<script src="js/ritmaresk.xsltTransformer.js"></script>
<script src="js/ritmaresk.SOS.js"></script>
<script src="js/ritmaresk.utils.js"></script>
<script src="js/ritmaresk.utils.swe.js"></script>
<script type="text/javascript" src="js/leaflet.js"></script>
<script type="text/javascript" src="js/L.TileLayer.BetterWMS.js"></script>
<!-- testing locate control for leaflet-->
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"/>
<link rel="stylesheet" href="css/L.Control.Locate.min.css" />
<!--[if lt IE 9]>
<link rel="stylesheet" href="css/L.Control.Locate.ie.min.css"/>
<![endif]-->
<link rel="stylesheet" href="css/MarkerCluster.Default.css"/>
<link rel="stylesheet" href="css/MarkerCluster.css"/>
<script src="js/L.Control.Locate.min.js" ></script>
<script src="js/leaflet.markercluster.js"></script>
<script src="js/sos_om_viewer.js"></script>
</head>
<body>
<div id="map"></div>
<div id="observation_result"></div>
</body>