source: trunk/src_map/index.php@ 7673

Last change on this file since 7673 was 7673, checked in by janveeden, 16 years ago

Added checkboxes. Removed some borders

File size: 1.1 KB
Line 
1<html>
2<head>
3<title>Nodemap Wireless Leiden</title>
4<link href="style/stylesheet.css" rel="stylesheet" type="text/css">
5<!-- Loading in the google-api -->
6<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
7<!-- Loading in the javascript that will add the map into #mapcanvas -->
8<script type="text/javascript" src="inc/nodemapWL.js"></script>
9</head>
10<body>
11<div id="mainwrapper">
12 <div id="mapcanvas">
13 <!-- Create the map using the intitialize_map() function from nodemapWL.js -->
14 <script type="text/javascript">initialize_map();</script>
15 </div>
16 <div id="infowrapper">
17 <div id="infotop"></div>
18 <div id="infobottom"></div>
19 </div>
20 <!-- General functions under the map -->
21 <div id="navigation">
22 <form>
23 <table>
24 <tr>
25 <!-- First colum -->
26 <td>
27 <input type="checkbox" value="shownodes">Toon nodes
28 </td>
29 <!-- Second colum -->
30 <td>
31 <input type="checkbox" value="showrange">Toon dekking <br/>
32 <input type="checkbox" value="showtraffic">Toon dataverkeer
33 </td>
34 </tr>
35 </table>
36 </form>
37 </div>
38</div>
39</body>
40</html>
Note: See TracBrowser for help on using the repository browser.