forked from planetserver/ps2-www-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
111 lines (87 loc) · 4.85 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>PlanetServer-2</title>
<!-- CSS online libraries -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<!-- auto complete dropdown -->
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<!-- amchart -->
<link href="https://www.amcharts.com/lib/3/plugins/export/export.css" rel="stylesheet" type="text/css">
<!-- CSS 3rd - local libraries -->
<link rel="stylesheet" href="html/libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.css" />
<link rel="stylesheet" href="html/libs/codemirror/codemirror.css" />
<link rel="stylesheet" href="html/libs/codemirror/scroll/simplescrollbars.css" />
<link rel="stylesheet" href="html/js/introjs.css" />
<!-- CSS modules -->
<link rel="stylesheet" href="html/template/service-template.css" />
<link rel="stylesheet" href="html/modules/rgb-combinator/rgb-combinator.css" />
<link rel="stylesheet" href="html/modules/menu-context/menu-context.css" />
<link rel="stylesheet" href="html/modules/charts/line-chart.css" />
<!-- Javascript libraries online -->
<script src="html/js/jquery/jquery-2.2.3.min.js"></script>
<script src="html/js/jquery/jquery-ui.min.js"></script>
<!-- Javascript amcharts -->
<script src="html/libs/amcharts/amcharts.js"></script>
<script src="html/libs/amcharts/serial.js"></script>
<script src="html/libs/amcharts/light.js"></script>
<script src="//www.amcharts.com/lib/3/xy.js"></script>
<script src="html/libs/amcharts/plugins/export/libs/jszip/jszip.js"></script>
<script src="html/libs/amcharts/plugins/export/libs/xlsx/xlsx.js"></script>
<script src="html/libs/amcharts/export.js"></script>
<!-- Javascript bootstrap library -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<!-- Javascript 3rd - libraries local -->
<!--D3 library for chart implementation-->
<script src="html/libs/d3charts/d3.v3.min.js"></script>
<script src="html/libs/malihu-custom-scrollbar-plugin/jquery.mousewheel.js"></script>
<script src="html/libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.js"></script>
<script src="html/libs/codemirror/codemirror.js"></script>
<script src="html/libs/codemirror/scroll/simplescrollbars.js"></script>
<script src="html/libs/codemirror/display/placeholder.js"></script>
<script src="html/libs/codemirror/selection/active-line.js"></script>
<script src="html/js/angular.min.js"></script>
<script src="html/js/intro.js"></script>
<script src="html/js/google-analytic.js"></script>
<!-- requirejs - include js into javascript file -->
<script data-main="html/modules/landings/landings" src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.17/require.min.js"></script>
<!-- Javascript local docks/panels (modules)-->
<!-- data for downdown box -->
<script src="html/template/data/selection-names.js"></script>
<!-- Javascript docks/bars -->
<script src="html/template/docks/navbar.js"></script>
<script src="html/template/docks/dock-bar.js"></script>
<script src="html/template/docks/main-dock.js"></script>
<script src="html/template/docks/secondary-dock.js"></script>
<script src="html/template/docks/info-dock.js"></script>
<script src="html/template/docks/plot-dock.js"></script>
<script src="html/template/docks/gis-toolbar.js"></script>
<script src="html/template/docks/coordinate-overlay.js"></script>
<script src="html/template/docks/ratio-dock.js"></script>
<!-- Javascript panels (modules) -->
<script src="html/template/panels/dock-panel.js"></script>
<script src="html/template/panels/tab-panel.js"></script>
<script src="html/template/panels/select-panel.js"></script>
<script src="html/template/panels/query-terminal-panel.js"></script>
<script src="html/template/panels/code-area-panel.js"></script>
<script src="html/template/panels/rgb-combinator-panel.js"></script>
<script src="html/template/panels/goto-panel.js"></script>
<!-- Javascript main template -->
<script src="html/template/service.js"></script>
</head>
<body>
<nav id="service-navbar"></nav>
<div id="service-container">
<canvas id="canvasOne"></canvas>
</div>
<!-- menu context on right click -->
<ul id="menuContext">
</ul>
<script type="application/javascript">
$(function() {
$("#service-container").service();
});
</script>
</body>
</html>