1 | <html>
|
---|
2 | <head>
|
---|
3 | <link href="{{ STATIC_URL }}style.css" rel="stylesheet" type="text/css" media="screen" />
|
---|
4 | <script type="text/javascript" language="Javascript" src="{{ STATIC_URL }}OpenLayers.js"></script>
|
---|
5 | <script type="text/javascript" language="Javascript" src="{{ STATIC_URL }}OpenStreetMap.js"></script>
|
---|
6 | <script type="text/javascript" language="Javascript" src="{{ STATIC_URL }}heatmap.js"></script>
|
---|
7 | <script type="text/javascript" language="Javascript" src="{{ STATIC_URL }}heatmap_extensions.js"></script>
|
---|
8 | <script language="javascript" type="text/javascript">
|
---|
9 | function toggleDiv(div){
|
---|
10 | if(document.getElementById(div + '_content').style.display != 'block'){
|
---|
11 | document.getElementById(div + '_content').style.display = 'block';
|
---|
12 | }
|
---|
13 | else{
|
---|
14 | document.getElementById(div + '_content').style.display = 'none';
|
---|
15 | }
|
---|
16 | }
|
---|
17 | </script>
|
---|
18 | </head>
|
---|
19 | <body onload="init()">
|
---|
20 | <div id="heatmap"></div>
|
---|
21 | <div id="header">
|
---|
22 | <div id="header_title">
|
---|
23 | <font style="font-size:24px; color:white;" onclick="toggleDiv('header')">Stichting Wireless Leiden - Heatmap
|
---|
24 | <a href="http://www.wirelessleiden.nl/" style="float: right;">wirelessleiden.nl</a></font>
|
---|
25 | </div>
|
---|
26 | <div id="header_content">
|
---|
27 | test
|
---|
28 | </div>
|
---|
29 | </div>
|
---|
30 | <div id="filters">
|
---|
31 | <div id="filters_title">
|
---|
32 | <font style="font-size:24px; color:white;" onclick="toggleDiv('filters')">Filters</font>
|
---|
33 | </div>
|
---|
34 | <div id="filters_content">
|
---|
35 | <form method="get" action="">
|
---|
36 | User: <input type="text" id="user" name="user" size="14"/> <br />
|
---|
37 | Set: <input type="text" id="dataset" name="dataset" size="14"/> <br />
|
---|
38 | WirelessLeiden Node: <input type="text" id="wlnode" name="wlnode" size="14"/> <br />
|
---|
39 | Encrypted: <input type="checkbox" id="enc" name="enc"/> <br />
|
---|
40 | Date: <input type="text" id="date" name="date" size="14"/> <br />
|
---|
41 | Colour: <input type="text" id="colour" name="colour" size="14"/> <br />
|
---|
42 | Layername: <input type="text" id="lname" name="lname" size="14"/> <br />
|
---|
43 | <input type="button" value="Add filter" onClick="filters()"/>
|
---|
44 | </form>
|
---|
45 | </div>
|
---|
46 | </div>
|
---|
47 | </body>
|
---|
48 | </html>
|
---|
49 |
|
---|
50 |
|
---|
51 |
|
---|
52 |
|
---|
53 |
|
---|
54 |
|
---|
55 |
|
---|
56 |
|
---|
57 |
|
---|
58 |
|
---|
59 |
|
---|
60 |
|
---|
61 |
|
---|
62 |
|
---|
63 | <body>
|
---|
64 | <!-- Collapsible panel, with separate CSS and JavaScript -->
|
---|
65 | <div style="width:170px;">
|
---|
66 | <div class="squarebox">
|
---|
67 | <div class="squareboxgradientcaption" style="height:20px; cursor: pointer;" onclick="togglePannelStatus(this.nextSibling)">
|
---|
68 | <div style="float: left">
|
---|
69 | </div>
|
---|
70 | <div style="float: right; vertical-align: middle">
|
---|
71 | </div>
|
---|
72 | </div>
|
---|
73 | <div class="squareboxcontent">
|
---|
74 | </div>
|
---|
75 | </div>
|
---|
76 | </div>
|
---|
77 | </body>
|
---|
78 | </html>
|
---|