forked from KNMI/adaguc-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbtd300.dev.html
75 lines (60 loc) · 3.39 KB
/
btd300.dev.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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<!--<link rel="icon" type="image/png" href="/impactportal/favicon.ico"/>-->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Viewer</title>
<!-- Configuration -->
<script type="text/javascript" src="configbtd300.js"></script>
<!-- Proj4 -->
<script type="text/javascript" src="proj4js/lib/proj4js.js"></script>
<!-- JQuery -->
<link rel="stylesheet" href="jquery/jquery-ui.css" />
<script src="jquery/jquery-1.12.4.min.js"></script>
<script src="jquery/jquery-ui.min.js"></script>
<script src="jquery/jquery.mousewheel.js"></script>
<script src="jquery/jquery-ui-timepicker-addon.js"></script>
<script src="jquery/globalize.js"></script>
<!-- Ext -->
<link rel="stylesheet" type="text/css" href="extjs-4.2.1/resources/css/ext-all.css" />
<script type="text/javascript" src="extjs-4.2.1/ext-all.js"></script>
<!-- webmapjs -->
<script type="text/javascript" src="webmapjs/WMJSTools.js"></script>
<script type="text/javascript" src="webmapjs/WMJSISO8601.js"></script>
<script type="text/javascript" src="webmapjs/WMJSProj4Definitions.js"></script>
<script type="text/javascript" src="webmapjs/WMJSJqueryprototypes.js"></script>
<script type="text/javascript" src="webmapjs/WebMapJS.js"></script>
<script type="text/javascript" src="webmapjs/WMJSLayer.js"></script>
<script type="text/javascript" src="webmapjs/WMJSBBOX.js"></script>
<script type="text/javascript" src="webmapjs/WMJSDimension.js"></script>
<script type="text/javascript" src="webmapjs/WMJSXMLParser.js"></script>
<script type="text/javascript" src="webmapjs/WMJSService.js"></script>
<script type="text/javascript" src="webmapjs/WMJSListener.js"></script>
<script type="text/javascript" src="webmapjs/WMJSTimer.js"></script>
<script type="text/javascript" src="webmapjs/WMJSTimeSlider.js"></script>
<script type="text/javascript" src="webmapjs/WMJSProcessing.js"></script>
<script type="text/javascript" src="webmapjs/WMJSCoverage.js"></script>
<script type="text/javascript" src="webmapjs/WMJSImage.js"></script>
<script type="text/javascript" src="webmapjs/WMJSImageStore.js"></script>
<script type="text/javascript" src="webmapjs/WMJSDivBuffer.js"></script>
<script type="text/javascript" src="webmapjs/WMJSTimeSelector.js"></script>
<link rel="stylesheet" type="text/css" href="webmapjs/WMJSStyles.css" />
<link rel="stylesheet" type="text/css" href="webmapjs/WMJSTimeSelector.css" />
<!-- webmapjsext -->
<script type="text/javascript" src="webmapjsext/WMJSExt/WCSPanel.js"></script>
<script type="text/javascript" src="webmapjsext/WMJSExtMain.js"></script>
<script type="text/javascript" src="webmapjsext/WMJSExt/UxDateTimeForm.js"></script>
<link rel="stylesheet" type="text/css" href="webmapjsext/WMJSExtStyles.css" />
<script type="text/javascript">
Ext.onReady(function(){
var readyFunction = function(layer){
mainWebmapJS.webMapJS.draw();
}
createNewLayerPanel(mainWebmapJS.webMapJS,{service:'http://birdexp02.knmi.nl/cgi-bin/adaguc/btd300.cgi?',name:'warningflag',ready:readyFunction});
createNewLayerPanel(mainWebmapJS.webMapJS,{service:'http://birdexp02.knmi.nl/cgi-bin/adaguc/btd300.cgi?',name:'warningindicator',ready:readyFunction});
});
</script>
</head>
<body>
</body>
</html>