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

Last change on this file since 7714 was 7709, checked in by bvdvelde, 15 years ago

Paar regeltjes voor 2'e javascript toegevoegd maar overlay.js uitgeschakeld (om beide op 1 kaart te krijgen zou ik m'n regels in nodemapWL.js moeten zetten, maar ik hou het nu liever apart).

File size: 2.6 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>
66
67 <!-- General functions under the map -->
68 <div id="navigation">
69 <form>
70 <table>
71 <tr>
72 <!-- First colum -->
73 <td>
74 <input type="checkbox" value="shownodes" onchange="toggleMyKml();" checked="checked">Toon nodes
75 </td>
76 <!-- Second colum -->
77 <td>
78 <input type="checkbox" value="showrange">Toon dekking <br/>
79 <input type="checkbox" value="showtraffic">Toon dataverkeer
80 </td>
81 </tr>
82 </table>
83 </form>
84 </div>
85</div>
86</body>
87</html>
Note: See TracBrowser for help on using the repository browser.