source: trunk/src_map/index.php@ 7688

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

Seperate stylesheet for IE, so the application is compatible with IE now. Still some things that have to be tweaked.

File size: 2.3 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 type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></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 <!-- General functions under the map -->
65 <div id="navigation">
66 <form>
67 <table>
68 <tr>
69 <!-- First colum -->
70 <td>
71 <input type="checkbox" value="shownodes">Toon nodes
72 </td>
73 <!-- Second colum -->
74 <td>
75 <input type="checkbox" value="showrange">Toon dekking <br/>
76 <input type="checkbox" value="showtraffic">Toon dataverkeer
77 </td>
78 </tr>
79 </table>
80 </form>
81 </div>
82</div>
83</body>
84</html>
Note: See TracBrowser for help on using the repository browser.