1 | <html>
|
---|
2 | <head>
|
---|
3 | <title>Nodemap Wireless Leiden</title>
|
---|
4 | <!-- External stylesheet for all browsers -->
|
---|
5 | <link href="style/stylesheet.css" rel="stylesheet" type="text/css">
|
---|
6 | <!-- Using stylesheet2.css when browser is any version of Microsoft Internet Explorer -->
|
---|
7 | <!--[if IE]>
|
---|
8 | <link href="style/stylesheet2.css" rel="stylesheet" type="text/css">
|
---|
9 | <![endif]-->
|
---|
10 |
|
---|
11 | <!-- Loading in the google-api -->
|
---|
12 | <script src="http://maps.google.com/maps?file=api&v=2&key=ABQIAAAAzr2EBOXUKnm_jVnk0OJI7xSosDVG8KKPE1-m51RBrvYughuyMxQ-i1QfUnH94QxWIa6N4U6MouMmBA" type="text/javascript"></script>
|
---|
13 | <!-- Loading in the javascript that will add the map into #mapcanvas -->
|
---|
14 | <script type="text/javascript" src="inc/nodemapWL.js"></script>
|
---|
15 | <script type="text/javascript" src="inc/overlay.js"></script>
|
---|
16 | </head>
|
---|
17 | <body>
|
---|
18 | <!-- Mainwrapper contains all content on the page -->
|
---|
19 | <div id="mainwrapper">
|
---|
20 | <!-- Mapcanvas is the container where the map will be put in. Height and width of map is specified by size of the div -->
|
---|
21 | <div id="mapcanvas">
|
---|
22 | <!-- Create the map using the intitialize_map() function from nodemapWL.js -->
|
---|
23 | <script type="text/javascript">initialize_map();</script>
|
---|
24 | <!--<script type="text/javascript">nodeAdd();</script>-->
|
---|
25 | </div>
|
---|
26 | <div id="infowrapper">
|
---|
27 | <!-- Top information space -->
|
---|
28 | <div id="infotop">
|
---|
29 | <!-- Calling on the node information from an external php file. inc/node_info.php -->
|
---|
30 | <?php include("inc/node_info.php") ?>
|
---|
31 | </div>
|
---|
32 |
|
---|
33 | <!-- Bottom information space -->
|
---|
34 | <div id="infobottom">
|
---|
35 | <!-- This contains the searchbox of the searchtool, and the send button for it -->
|
---|
36 | <div id="searchbox">
|
---|
37 | <form>
|
---|
38 | <input type="text" name="naam" size="18" maxlength="30"><input type="button" name="knop" value=" > ">
|
---|
39 | </form>
|
---|
40 | </div>
|
---|
41 | <!-- This contains the list of nodes, in future the searchbox will make it possible to filter this list -->
|
---|
42 | <div id="searchlist">
|
---|
43 | <select multiple>
|
---|
44 | <option value="node1">Node 1 Leiden</option>
|
---|
45 | <option value="node2">Node 2 Leiden</option>
|
---|
46 | <option value="node3">Node 3 Leiden</option>
|
---|
47 | <option value="node4">Node 4 Leiden</option>
|
---|
48 | <option value="node5">Node 5 Leiden</option>
|
---|
49 | <option value="node6">Node 6 Leiden</option>
|
---|
50 | <option value="node7">Node 7 Leiden</option>
|
---|
51 | <option value="node8">Node 8 Leiden</option>
|
---|
52 | <option value="node9">Node 9 Leiden</option>
|
---|
53 | <option value="node10">Node 10 Leiden</option>
|
---|
54 | </select>
|
---|
55 | </div>
|
---|
56 | </div>
|
---|
57 | <!-- The buttons under the searchframe. In a table for positioning. -->
|
---|
58 | <div id="userpick">
|
---|
59 | <table>
|
---|
60 | <tr>
|
---|
61 | <td><input type="button" value="Gebruiker"></td>
|
---|
62 | <td><input type="button" value="Beheerder"></td>
|
---|
63 | </tr>
|
---|
64 | </table>
|
---|
65 | </div>
|
---|
66 | </div>
|
---|
67 |
|
---|
68 | <!-- General functions under the map -->
|
---|
69 | <div id="navigation">
|
---|
70 | <form>
|
---|
71 | <table>
|
---|
72 | <tr>
|
---|
73 | <!-- First colum -->
|
---|
74 | <td>
|
---|
75 | <input type="checkbox" value="shownodes" onclick="toggleMyKml();" checked="checked">Toon nodes
|
---|
76 | </td>
|
---|
77 | <!-- Second colum -->
|
---|
78 | <td>
|
---|
79 | <input type="checkbox" value="showrange">Toon dekking <br/>
|
---|
80 | <input type="checkbox" value="showtraffic">Toon dataverkeer
|
---|
81 | </td>
|
---|
82 | </tr>
|
---|
83 | </table>
|
---|
84 | </form>
|
---|
85 | </div>
|
---|
86 | </div>
|
---|
87 | </body>
|
---|
88 | </html>
|
---|