-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiec.html
111 lines (102 loc) · 4.74 KB
/
iec.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
<!DOCTYPE html>
<html>
<head>
<title>Realtime Operations Control | Joola</title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<link rel="stylesheet" href="http://layout.jquery-dev.com/lib/css/layout-default-latest.css">
<link rel="stylesheet" href="/css/bootstrap.min.css">
<link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="/iec/js/vendor/introjs.min.css">
<link href='https://api.tiles.mapbox.com/mapbox.js/v2.1.6/mapbox.css' rel='stylesheet'/>
<link href='https://api.tiles.mapbox.com/mapbox.js/plugins/leaflet-draw/v0.2.2/leaflet.draw.css' rel='stylesheet'/>
<link href='https://api.tiles.mapbox.com/mapbox.js/plugins/leaflet-fullscreen/v0.0.4/leaflet.fullscreen.css'
rel='stylesheet'/>
<link href='https://api.tiles.mapbox.com/mapbox.js/plugins/leaflet-markercluster/v0.4.0/MarkerCluster.css'
rel='stylesheet'/>
<link href='https://api.tiles.mapbox.com/mapbox.js/plugins/leaflet-markercluster/v0.4.0/MarkerCluster.Default.css'
rel='stylesheet'/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/vis/3.11.0/vis.css">
<link rel="stylesheet" href="/iec/css/default.css">
<script src="/js/vendor/jquery-1.11.2.min.js"></script>
<script src="/js/vendor/jquery-ui.min.js"></script>
<script src="http://layout.jquery-dev.com/lib/js/jquery.layout-latest.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.2/underscore-min.js"></script>
<script src='https://api.tiles.mapbox.com/mapbox.js/v2.1.6/mapbox.js'></script>
<script src='https://api.tiles.mapbox.com/mapbox.js/plugins/leaflet-draw/v0.2.2/leaflet.draw.js'></script>
<script
src='https://api.tiles.mapbox.com/mapbox.js/plugins/leaflet-fullscreen/v0.0.4/Leaflet.fullscreen.min.js'></script>
<script src='https://api.tiles.mapbox.com/mapbox.js/plugins/leaflet-geodesy/v0.1.0/leaflet-geodesy.js'></script>
<script
src='https://api.tiles.mapbox.com/mapbox.js/plugins/leaflet-markercluster/v0.4.0/leaflet.markercluster.js'></script>
<script src='/iec/js/vendor/simpleheat.js'></script>
<script src='/iec/js/vendor/HeatLayer.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/d3/3.4.6/d3.min.js' charset="utf-8"></script>
<script src="/iec/js/vendor/jquery.timeago.js"></script>
<script src="/iec/js/leaflet.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/flot/0.8.3/jquery.flot.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vis/3.11.0/vis.js"></script>
<script src="http://lab-001.joo.la:8081/joola.js"></script>
<script src="/iec/js/state.js"></script>
<script src="/iec/js/globals.js"></script>
<script src="/iec/js/geohash.js"></script>
<script src="/iec/js/joola.js"></script>
<script src="/iec/js/wireframe.js"></script>
<script src="/iec/js/timeline.js"></script>
<script src="/iec/js/sequence.js"></script>
<script src="/iec/js/network.js"></script>
</head>
<body>
<div id="map-canvas"></div>
<div id='map-overlay-south'></div>
<pre id='coordinates' class='ui-coordinates'></pre>
<div id='site-details'>
<h3 id="site-name"></h3>
<div id="details-left" class="left">
<div id="network-popUp">
<span id="operation">node</span> <br>
<table style="margin:auto;">
<tr>
<td>id</td>
<td><input id="node-id" value="new value"></td>
</tr>
<tr>
<td>label</td>
<td><input id="node-label" value="new value"></td>
</tr>
</table>
<input type="button" value="save" id="saveButton"></button>
<input type="button" value="cancel" id="cancelButton"></button>
</div>
<div id="mynetwork"></div>
</div>
<div id="details-right" class="right">
<p id="selection">Select a node on the left to see details and alerts.</p>
<table id="node-details" class="table table-bordered table-condensed table-striped"></table>
<table id="node-alerts" class="table table-bordered table-condensed table-striped"></table>
</div>
</div>
<!--<div id="details" class="">
<div class="header handle ">
<span class="showingresults">
Loading data...
</span>
<span class="expand pull-right">Expand</span>
</div>
<div class="content">
<div id="table"></div>
</div>
</div>
<code id='mousemove'></code>
<div class="timeline-wrapper">
<div class="timeline-controls">
<button type="button" id="button_play" class="btn btn-success" onclick='buttonPlayPress()'>
<i class="fa fa-play"></i>
</button>
</div>
<svg class="timeline"></svg>
<div class="timeline-state"><span class="timeline-state-caption">Last 90 sec.</span></div>
</div>
<script src="/iec/js/vendor/intro.min.js"></script>-->
</body>
</html>