-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
77 lines (71 loc) · 3.64 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1,user-scalable=no"/>
<title>GeoMob</title>
<link rel="stylesheet" href="http://js.arcgis.com/3.16/esri/css/esri.css">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="http://js.arcgis.com/3.16/dijit/themes/claro/claro.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<link href="https://gitcdn.github.io/bootstrap-toggle/2.2.2/css/bootstrap-toggle.min.css" rel="stylesheet">
<link rel="stylesheet" href="styles/main.css">
<script src="https://code.jquery.com/jquery-2.2.3.min.js"></script>
<script src="http://js.arcgis.com/3.16/"></script>
<!-- // <script src="http://ajax.googleapis.com/ajax/libs/dojo/1.10.4/dojo/dojo.js"></script> -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<script src="https://gitcdn.github.io/bootstrap-toggle/2.2.2/js/bootstrap-toggle.min.js"></script>
<script src="js/main.js"></script>
</head>
<body class="claro">
<div data-dojo-type="dijit/layout/BorderContainer" data-dojo-props="design:'headline', gutters:false" style="width:100%;height:100%;margin:0px;">
<div data-dojo-type="dijit/layout/ContentPane" data-dojo-props="region:'top'" >
<div>
<nav class="navbar navbar-default" >
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">GeoMob</a>
</div>
<form class="navbar-form navbar-right" role="search">
<div class="form-group">
<input type="text" id="search" class="form-control">
</div>
</form>
</div>
</nav>
</div>
</div>
<div id="layerListPane" data-dojo-type="dijit/layout/ContentPane" data-dojo-props="region:'right'">
<div id="layerList"></div>
</div>
<div id="panel" class="panel panel-default">
<div class="panel-heading">Analyses
<button type="button" id="closePanelBtn" class="close">
<span aria-hidden="true">×</span><span class="sr-only">Close</span>
</button>
</div>
<div class="panel-body" id="chartContainer">
<div id="inner-panel">
<div id="chart-toggle-container">
<input id="chart-toggle" type="checkbox" checked data-toggle="toggle" data-on="Traffic Histogram" data-off="Prominent Social Media App" data-onstyle="success" data-offstyle="success" data-width="220">
</div>
<div id="chart">Histogram</div>
<div id="social-chart" >
<h3>Prominent Social Media App</h3>
<!-- <img src="http://thenewswisecom.ipage.com/wp-content/uploads/2016/05/Snapchat-logo-as.png" style="width:250px;height:250px;"> -->
</div>
</div>
</div>
</div>
<div id="spinner" style="display:none"><span class="glyphicon glyphicon-refresh glyphicon-spin" style="font-size:200px;"></span></div>
<div id="map" data-dojo-type="dijit/layout/ContentPane" data-dojo-props="region:'center'">
</div>
</div>
</body>
</html>