source: trunk/src_map/index.php@ 7700

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

about last commit; Nodes based on KML file are now displayed on the map. Toggling nodes on and off works aswell but will need change in future since now it simply removes overlay.

File size: 2.5 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</head>
15<body>
16<div id="mainwrapper">
17 <div id="mapcanvas">
18 <!-- Create the map using the intitialize_map() function from nodemapWL.js -->
19 <script type="text/javascript">initialize_map();</script>
20 </div>
21 <div id="infowrapper">
22 <!-- Top information space -->
23 <div id="infotop">
24 <div id="nodeinfo">
25 <h1>Nodenaam</h1>
26 <h2>
27 Locatie: Oude Adeweg Leiderdorp <br/>
28 Meer info: <br/>
29 >>>>>>: <br/>
30 >>>>>>: <br/>
31 >>>>>>: <br/>
32 >>>>>>: <br/>
33 </h2>
34 </div>
35 <div id="timestamp">
36 Laatste update: 15:42 <br/>
37 Do 25 maart
38 </div>
39 </div>
40
41 <!-- Bottom information space -->
42 <div id="infobottom">
43 <div id="searchbox">
44 <form>
45 <input type="text" name="naam" size="18" maxlength="30"><input type="button" name="knop" value=">">
46 </form>
47 </div>
48 <div id="searchlist">
49 <select multiple>
50 <option value="node1">Node 1 Leiden</option>
51 <option value="node2">Node 2 Leiden</option>
52 <option value="node3">Node 3 Leiden</option>
53 <option value="node4">Node 4 Leiden</option>
54 <option value="node5">Node 5 Leiden</option>
55 <option value="node6">Node 6 Leiden</option>
56 <option value="node7">Node 7 Leiden</option>
57 <option value="node8">Node 8 Leiden</option>
58 <option value="node9">Node 9 Leiden</option>
59 <option value="node10">Node 10 Leiden</option>
60 </select>
61 </div>
62 </div>
63 </div>
64
65 <!-- General functions under the map -->
66 <div id="navigation">
67 <form>
68 <table>
69 <tr>
70 <!-- First colum -->
71 <td>
72 <input type="checkbox" value="shownodes" onchange="toggleMyKml();" CHECKED>Toon nodes
73 </td>
74 <!-- Second colum -->
75 <td>
76 <input type="checkbox" value="showrange">Toon dekking <br/>
77 <input type="checkbox" value="showtraffic">Toon dataverkeer
78 </td>
79 </tr>
80 </table>
81 </form>
82 </div>
83</div>
84</body>
85</html>
Note: See TracBrowser for help on using the repository browser.