-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·36 lines (30 loc) · 1.28 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
<html>
<head>
<title> Rapid flood event analysis in Germany </title>
<!-- Load the ExtJS stylesheet -->
<link rel="stylesheet" type="text/css"
href="javascript/ext-4.2.1.883/resources/ext-theme-gray/ext-theme-gray-all.css">
<!-- Load ExtJS from their CDN, local versions work also -->
<script type="text/javascript"
src="./javascript/ext-4.2.1.883/ext-debug.js"></script>
<!-- Load OpenLayers, custom builds may even be better -->
<script src="http://openlayers.org/api/2.13.1/OpenLayers.js"></script>
<script type="text/javascript" src="http://maps.stamen.com/js/tile.stamen.js?v1.3.0"></script>
<script type="text/javascript" src="./javascript/loader.js"></script>
<script src="./javascript/colorbrewer.js" ></script>
<script type="text/javascript" src="./javascript/base_layers.js"></script>
<script src="./javascript/layer_styles.js" ></script>
<script type="text/javascript" src="./javascript/extjs_comp.js"></script>
<script type="text/javascript" src="./javascript/postgis_stores.js"></script>
<link rel="stylesheet" type="text/css" href="./css_base/style_base.css">
</head>
<body>
<div id="container">
<div id="header">
<img src="png/cedim_logo.png" alt="cedim logo" width="140" >
<h1>Flood event explorer</h1>
</div>
<div id="mainpanel" ></div>
</div>
</body>
</html>