source: trunk/src/map/index.php@ 7718

Last change on this file since 7718 was 7718, checked in by janveeden, 15 years ago

gebruikers/beheerdersview switch now works for node_info.php.

File size: 3.3 KB
Line 
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&amp;v=2&amp;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<script type="text/javascript" src="inc/gebruiker_beheerder_switch.js"></script>
17</head>
18<body>
19<!-- Mainwrapper contains all content on the page -->
20<div id="mainwrapper">
21 <!-- Mapcanvas is the container where the map will be put in. Height and width of map is specified by size of the div -->
22 <div id="mapcanvas">
23 <!-- Create the map using the intitialize_map() function from nodemapWL.js -->
24 <script type="text/javascript">initialize_map();</script>
25 <!--<script type="text/javascript">nodeAdd();</script>-->
26 </div>
27 <div id="infowrapper">
28 <!-- Top information space -->
29 <div id="infotop">
30 <!-- Calling on the node information from an external php file. inc/node_info.php -->
31 <?php include("inc/node_info.php") ?>
32 </div>
33
34 <!-- Bottom information space -->
35 <div id="infobottom">
36 <!-- This contains the searchbox of the searchtool, and the send button for it -->
37 <div id="searchbox">
38 <form>
39 <input type="text" name="naam" size="18" maxlength="30"><input type="button" name="knop" value=" > ">
40 </form>
41 </div>
42 <!-- This contains the list of nodes, in future the searchbox will make it possible to filter this list -->
43 <div id="searchlist">
44 <select multiple>
45 <option value="node1">Node 1 Leiden</option>
46 <option value="node2">Node 2 Leiden</option>
47 <option value="node3">Node 3 Leiden</option>
48 <option value="node4">Node 4 Leiden</option>
49 <option value="node5">Node 5 Leiden</option>
50 <option value="node6">Node 6 Leiden</option>
51 <option value="node7">Node 7 Leiden</option>
52 <option value="node8">Node 8 Leiden</option>
53 <option value="node9">Node 9 Leiden</option>
54 <option value="node10">Node 10 Leiden</option>
55 </select>
56 </div>
57 </div>
58 <!-- The buttons under the searchframe. In a table for positioning. -->
59 <div id="userpick">
60 <table>
61 <tr>
62 <td><input type="button" value="Gebruiker" onclick="switchGebruiker();"></td>
63 <td><input type="button" value="Beheerder" onclick="switchBeheerder();"></td>
64 </tr>
65 </table>
66 </div>
67 </div>
68
69 <!-- General functions under the map -->
70 <div id="navigation">
71 <form>
72 <table>
73 <tr>
74 <!-- First colum -->
75 <td>
76 <input type="checkbox" value="shownodes" onclick="toggleMyKml();" checked="checked">Toon nodes
77 </td>
78 <!-- Second colum -->
79 <td>
80 <input type="checkbox" value="showrange">Toon dekking <br/>
81 <input type="checkbox" value="showtraffic">Toon dataverkeer
82 </td>
83 </tr>
84 </table>
85 </form>
86 </div>
87</div>
88</body>
89</html>
Note: See TracBrowser for help on using the repository browser.