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

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

Beheerder and Gebruikers button added. Modified both CSS files for better IE results

File size: 2.8 KB
Line 
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&amp;v=2&amp;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 <div id="nodeinfo">
27 <h1>Nodenaam</h1>
28 <h2>
29 Locatie: Oude Adeweg Leiderdorp <br/>
30 Meer info: <br/>
31 >>>>>>: <br/>
32 >>>>>>: <br/>
33 >>>>>>: <br/>
34 >>>>>>: <br/>
35 </h2>
36 </div>
37 <div id="timestamp">
38 Laatste update: 15:42 <br/>
39 Do 25 maart
40 </div>
41 </div>
42
43 <!-- Bottom information space -->
44 <div id="infobottom">
45 <div id="searchbox">
46 <form>
47 <input type="text" name="naam" size="18" maxlength="30"><input type="button" name="knop" value=" > ">
48 </form>
49 </div>
50 <div id="searchlist">
51 <select multiple>
52 <option value="node1">Node 1 Leiden</option>
53 <option value="node2">Node 2 Leiden</option>
54 <option value="node3">Node 3 Leiden</option>
55 <option value="node4">Node 4 Leiden</option>
56 <option value="node5">Node 5 Leiden</option>
57 <option value="node6">Node 6 Leiden</option>
58 <option value="node7">Node 7 Leiden</option>
59 <option value="node8">Node 8 Leiden</option>
60 <option value="node9">Node 9 Leiden</option>
61 <option value="node10">Node 10 Leiden</option>
62 </select>
63 </div>
64 </div>
65 <div id="userpick">
66 <table>
67 <tr>
68 <td><input type="button" value="Gebruiker"></td>
69 <td><input type="button" value="Beheerder"></td>
70 </tr>
71 </table>
72 </div>
73 </div>
74
75 <!-- General functions under the map -->
76 <div id="navigation">
77 <form>
78 <table>
79 <tr>
80 <!-- First colum -->
81 <td>
82 <input type="checkbox" value="shownodes" onclick="toggleMyKml();" checked="checked">Toon nodes
83 </td>
84 <!-- Second colum -->
85 <td>
86 <input type="checkbox" value="showrange">Toon dekking <br/>
87 <input type="checkbox" value="showtraffic">Toon dataverkeer
88 </td>
89 </tr>
90 </table>
91 </form>
92 </div>
93</div>
94</body>
95</html>
Note: See TracBrowser for help on using the repository browser.