[7664] | 1 | <html>
|
---|
| 2 | <head>
|
---|
| 3 | <title>Nodemap Wireless Leiden</title>
|
---|
[7717] | 4 | <!-- External stylesheet for all browsers -->
|
---|
[7664] | 5 | <link href="style/stylesheet.css" rel="stylesheet" type="text/css">
|
---|
[7717] | 6 | <!-- Using stylesheet2.css when browser is any version of Microsoft Internet Explorer -->
|
---|
[7688] | 7 | <!--[if IE]>
|
---|
| 8 | <link href="style/stylesheet2.css" rel="stylesheet" type="text/css">
|
---|
| 9 | <![endif]-->
|
---|
| 10 |
|
---|
[7665] | 11 | <!-- Loading in the google-api -->
|
---|
[7694] | 12 | <script src="http://maps.google.com/maps?file=api&v=2&key=ABQIAAAAzr2EBOXUKnm_jVnk0OJI7xSosDVG8KKPE1-m51RBrvYughuyMxQ-i1QfUnH94QxWIa6N4U6MouMmBA" type="text/javascript"></script>
|
---|
[7665] | 13 | <!-- Loading in the javascript that will add the map into #mapcanvas -->
|
---|
| 14 | <script type="text/javascript" src="inc/nodemapWL.js"></script>
|
---|
[7709] | 15 | <script type="text/javascript" src="inc/overlay.js"></script>
|
---|
[7664] | 16 | </head>
|
---|
| 17 | <body>
|
---|
[7717] | 18 | <!-- Mainwrapper contains all content on the page -->
|
---|
[7664] | 19 | <div id="mainwrapper">
|
---|
[7717] | 20 | <!-- Mapcanvas is the container where the map will be put in. Height and width of map is specified by size of the div -->
|
---|
[7665] | 21 | <div id="mapcanvas">
|
---|
| 22 | <!-- Create the map using the intitialize_map() function from nodemapWL.js -->
|
---|
| 23 | <script type="text/javascript">initialize_map();</script>
|
---|
[7709] | 24 | <!--<script type="text/javascript">nodeAdd();</script>-->
|
---|
[7665] | 25 | </div>
|
---|
[7664] | 26 | <div id="infowrapper">
|
---|
[7675] | 27 | <!-- Top information space -->
|
---|
| 28 | <div id="infotop">
|
---|
[7717] | 29 | <!-- Calling on the node information from an external php file. inc/node_info.php -->
|
---|
[7716] | 30 | <?php include("inc/node_info.php") ?>
|
---|
[7675] | 31 | </div>
|
---|
| 32 |
|
---|
| 33 | <!-- Bottom information space -->
|
---|
| 34 | <div id="infobottom">
|
---|
[7717] | 35 | <!-- This contains the searchbox of the searchtool, and the send button for it -->
|
---|
[7676] | 36 | <div id="searchbox">
|
---|
[7687] | 37 | <form>
|
---|
[7715] | 38 | <input type="text" name="naam" size="18" maxlength="30"><input type="button" name="knop" value=" > ">
|
---|
[7687] | 39 | </form>
|
---|
[7676] | 40 | </div>
|
---|
[7717] | 41 | <!-- This contains the list of nodes, in future the searchbox will make it possible to filter this list -->
|
---|
[7676] | 42 | <div id="searchlist">
|
---|
[7687] | 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>
|
---|
[7676] | 55 | </div>
|
---|
[7675] | 56 | </div>
|
---|
[7716] | 57 | <!-- The buttons under the searchframe. In a table for positioning. -->
|
---|
[7715] | 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>
|
---|
[7664] | 66 | </div>
|
---|
[7695] | 67 |
|
---|
[7673] | 68 | <!-- General functions under the map -->
|
---|
| 69 | <div id="navigation">
|
---|
| 70 | <form>
|
---|
| 71 | <table>
|
---|
| 72 | <tr>
|
---|
| 73 | <!-- First colum -->
|
---|
| 74 | <td>
|
---|
[7715] | 75 | <input type="checkbox" value="shownodes" onclick="toggleMyKml();" checked="checked">Toon nodes
|
---|
[7673] | 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>
|
---|
[7664] | 86 | </div>
|
---|
| 87 | </body>
|
---|
| 88 | </html>
|
---|