forked from KNMI/adaguc-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.dev.html
97 lines (84 loc) · 5.45 KB
/
index.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!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>ADAGUC Viewer</title>
<!-- ADAGUC WebMapJS Configuration -->
<script type="text/javascript" src="config.js"></script>
<!-- ADAGUC WebMapJS dependencies -->
<script type="text/javascript" src="./libs/node_modules/moment/moment.js"></script>
<script type="text/javascript" src="./libs/node_modules/proj4/dist/proj4.js"></script>
<script type="text/javascript" src="./libs/node_modules/jquery/dist/jquery.min.js"></script>
<script type="text/javascript" src="./libs/node_modules/jquery-ui-dist/jquery-ui.min.js"></script>
<!-- ADAGUC WebMapJS library -->
<script type="module" src="webmapjs/WMJSExternalDependencies.js"></script>
<script type="module" src="webmapjs/WMJSTools.js"></script>
<script type="module" src="webmapjs/WMJSTime.js"></script>
<script type="module" src="webmapjs/WMJSBBOX.js"></script>
<script type="module" src="webmapjs/WMJSDimension.js"></script>
<script type="module" src="webmapjs/WMJSXMLParser.js"></script>
<script type="module" src="webmapjs/WMJSService.js"></script>
<script type="module" src="webmapjs/WMJSLayer.js"></script>
<script type="module" src="webmapjs/WMJSListener.js"></script>
<script type="module" src="webmapjs/WMJSTimer.js"></script>
<script type="module" src="webmapjs/WMJSImage.js"></script>
<script type="module" src="webmapjs/WMJSImageStore.js"></script>
<script type="module" src="webmapjs/WMJSCanvasBuffer.js"></script>
<script type="module" src="webmapjs/WMJSAnimate.js"></script>
<script type="module" src="webmapjs/WMJSDialog.js"></script>
<script type="module" src="webmapjs/WMJSTileRenderer.js"></script>
<script type="module" src="webmapjs/WMJSDrawMarker.js"></script>
<script type="module" src="webmapjs/WMJSMap.js"></script>
<!-- Global ADAGUC WebMapJS exporter for non ecmascript6 ExtJS user -->
<script type="module" src="webmapjs_h/WMJSImportsToGlobal.js"></script>
<link rel="icon" type="image/png" href="img/adaguc-logo-favicon-16x16.png" sizes="16x16">
<link rel="icon" type="image/png" href="img/adaguc-logo-favicon-32x32.png" sizes="32x32">
<!-- D3/C3/GFI Apps -->
<script src="libs/d3/d3.v3.min.js" charset="utf-8"></script>
<script src="libs/d3/c3.min.js"></script>
<link rel="stylesheet" type="text/css" href="libs/d3/c3.css">
<!-- ADAGUC viewer apps -->
<script src="./apps/appframework.js"></script>
<script src="./apps/gfiapp_d3c3.js"></script>
<script src="./apps/autowms_app.js"></script>
<script src="./apps/gfiapp_point_interest.js"></script>
<script src="./apps/gfiapp_eprofile.js"></script>
<link rel="stylesheet" href="./apps/autowms_app.css" />
<link rel="stylesheet" href="./apps/gfiapp_d3c3.css" />
<!-- WebMapJS helper files -->
<script type="text/javascript" src="webmapjs_h/WMJSCoverage.js"></script>
<script type="text/javascript" src="webmapjs_h/WMJSTimeSelector.js"></script>
<script type="text/javascript" src="webmapjs_h/WMJSTimeSlider.js"></script>
<script type="text/javascript" src="webmapjs_h/WMJSProcessing.js"></script>
<script type="text/javascript" src="webmapjs_h/WMJS_GFITimeElevation.js"></script>
<script type="text/javascript" src="webmapjs_h/WMJSDefineGlobals.js"></script>
<!-- Stylesheets -->
<link rel="stylesheet" href="./libs/node_modules/jquery-ui-dist/jquery-ui.css" />
<link rel="stylesheet" type="text/css" href="webmapjs/WMJSStyles.css" />
<link rel="stylesheet" type="text/css" href="webmapjs_h/WMJSTimeSelector.css" />
<link rel="stylesheet" type="text/css" href="webmapjs_h/WMJS_GFITimeElevation.css" />
<!-- ExtJS main library -->
<link rel="stylesheet" type="text/css" href="libs/extjs-4.2.1/resources/css/ext-all.css" />
<script type="text/javascript" src="libs/extjs-4.2.1/ext-all.js"></script>
<!-- ADAGUC WebMapJSExt -->
<script type="text/javascript" src="webmapjsext/WMJSExt/ServicePanel.js"></script>
<script type="text/javascript" src="webmapjsext/WMJSExt/DimensionPanel.js"></script>
<script type="text/javascript" src="webmapjsext/WMJSExt/StylePanel.js"></script>
<script type="text/javascript" src="webmapjsext/WMJSExt/LayerPropertiesPanel.js"></script>
<script type="text/javascript" src="webmapjsext/WMJSExt/MapPanel.js"></script>
<script type="text/javascript" src="webmapjsext/WMJSExt/LayerPanel.js"></script>
<script type="text/javascript" src="webmapjsext/WMJSExt/MapTypeSelector.js"></script>
<script type="text/javascript" src="webmapjsext/WMJSExt/AnimationPanel.js"></script>
<script type="text/javascript" src="webmapjsext/WMJSExt/DataPanel.js"></script>
<script type="text/javascript" src="webmapjsext/WMJSExt/PermaLinkPanel.js"></script>
<script type="text/javascript" src="webmapjsext/WMJSExt/CheckColumn.js"></script>
<script type="text/javascript" src="webmapjsext/WMJSExt/WCSPanel.js"></script>
<script type="text/javascript" src="webmapjsext/WMJSExt/UxDateTimeForm.js"></script>
<script type="text/javascript" src="webmapjsext/WMJSExtMain.js"></script>
<!-- ADAGUC WebMapJSExt Stylesheets -->
<link rel="stylesheet" type="text/css" href="webmapjsext/WMJSExtStyles.css" />
</head>
<body>
</body>
</html>