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