Changeset 7805 for trunk/src/map/index.php
- Timestamp:
- Apr 17, 2010, 4:22:35 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/map/index.php
r7802 r7805 1 1 <?php 2 require_once("inc/kmlHandler.php");3 2 require_once("../config.php"); 4 require_once("inc/node_info_start.php"); 3 require_once($config['root']."/map/inc/kmlHandler.php"); 4 require_once($config['root']."/map/inc/node_info_start.php"); 5 require_once($config['root']."/map/inc/search_node.php"); 5 6 6 7 #getting array from kmlHandler … … 29 30 30 31 <!-- Make our $marker[] array from kmlHandler available to javascript in JSON (No idea on how to this another less ugle way)--> 31 <script >32 <script type="text/javascript"> 32 33 var markers = <?php echo json_encode($markers); ?>; 33 34 </script> … … 44 45 <!-- Loading in the javascript that handles the switching between gebruiker and beheerder --> 45 46 <script type="text/javascript" src="inc/gebruiker_beheerder_switch.js"></script> 47 46 48 </head> 47 49 <body> … … 63 65 <!-- Bottom information space --> 64 66 <div id="infobottom"> 65 <!-- This contains the searchbox of the searchtool, and the send button for it --> 66 <div id="searchbox"> 67 <form> 68 <input type="text" name="naam" size="18" maxlength="30"><input type="button" name="knop" value=" > "> 69 </form> 70 </div> 71 <!-- This contains the list of nodes, in future the searchbox will make it possible to filter this list --> 67 <?php searchNodes(); ?> 72 68 <div id="searchlist"> 73 <select multiple> 74 <option value="node1">Node 1 Leiden</option> 75 <option value="node2">Node 2 Leiden</option> 76 <option value="node3">Node 3 Leiden</option> 77 <option value="node4">Node 4 Leiden</option> 78 <option value="node5">Node 5 Leiden</option> 79 <option value="node6">Node 6 Leiden</option> 80 <option value="node7">Node 7 Leiden</option> 81 <option value="node8">Node 8 Leiden</option> 82 <option value="node9">Node 9 Leiden</option> 83 <option value="node10">Node 10 Leiden</option> 84 </select> 69 85 70 </div> 86 71 </div>
Note:
See TracChangeset
for help on using the changeset viewer.