[7664] | 1 | <html>
|
---|
| 2 | <head>
|
---|
| 3 | <title>Nodemap Wireless Leiden</title>
|
---|
[7688] | 4 |
|
---|
[7664] | 5 | <link href="style/stylesheet.css" rel="stylesheet" type="text/css">
|
---|
[7688] | 6 | <!--[if IE]>
|
---|
| 7 | <link href="style/stylesheet2.css" rel="stylesheet" type="text/css">
|
---|
| 8 | <![endif]-->
|
---|
| 9 |
|
---|
[7665] | 10 | <!-- Loading in the google-api -->
|
---|
[7694] | 11 | <script src="http://maps.google.com/maps?file=api&v=2&key=ABQIAAAAzr2EBOXUKnm_jVnk0OJI7xSosDVG8KKPE1-m51RBrvYughuyMxQ-i1QfUnH94QxWIa6N4U6MouMmBA" type="text/javascript"></script>
|
---|
[7665] | 12 | <!-- Loading in the javascript that will add the map into #mapcanvas -->
|
---|
| 13 | <script type="text/javascript" src="inc/nodemapWL.js"></script>
|
---|
[7709] | 14 | <script type="text/javascript" src="inc/overlay.js"></script>
|
---|
[7664] | 15 | </head>
|
---|
| 16 | <body>
|
---|
| 17 | <div id="mainwrapper">
|
---|
[7665] | 18 | <div id="mapcanvas">
|
---|
| 19 | <!-- Create the map using the intitialize_map() function from nodemapWL.js -->
|
---|
| 20 | <script type="text/javascript">initialize_map();</script>
|
---|
[7709] | 21 | <!--<script type="text/javascript">nodeAdd();</script>-->
|
---|
[7665] | 22 | </div>
|
---|
[7664] | 23 | <div id="infowrapper">
|
---|
[7675] | 24 | <!-- Top information space -->
|
---|
| 25 | <div id="infotop">
|
---|
[7716] | 26 | <!-- Calling on the node information from an extarnal php file. inc/node_info.php -->
|
---|
| 27 | <?php include("inc/node_info.php") ?>
|
---|
[7675] | 28 | </div>
|
---|
| 29 |
|
---|
| 30 | <!-- Bottom information space -->
|
---|
| 31 | <div id="infobottom">
|
---|
[7676] | 32 | <div id="searchbox">
|
---|
[7687] | 33 | <form>
|
---|
[7715] | 34 | <input type="text" name="naam" size="18" maxlength="30"><input type="button" name="knop" value=" > ">
|
---|
[7687] | 35 | </form>
|
---|
[7676] | 36 | </div>
|
---|
| 37 | <div id="searchlist">
|
---|
[7687] | 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>
|
---|
[7676] | 50 | </div>
|
---|
[7675] | 51 | </div>
|
---|
[7716] | 52 | <!-- The buttons under the searchframe. In a table for positioning. -->
|
---|
[7715] | 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>
|
---|
[7664] | 61 | </div>
|
---|
[7695] | 62 |
|
---|
[7673] | 63 | <!-- General functions under the map -->
|
---|
| 64 | <div id="navigation">
|
---|
| 65 | <form>
|
---|
| 66 | <table>
|
---|
| 67 | <tr>
|
---|
| 68 | <!-- First colum -->
|
---|
| 69 | <td>
|
---|
[7715] | 70 | <input type="checkbox" value="shownodes" onclick="toggleMyKml();" checked="checked">Toon nodes
|
---|
[7673] | 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>
|
---|
[7664] | 81 | </div>
|
---|
| 82 | </body>
|
---|
| 83 | </html>
|
---|