source: trunk/Modules/Map/Map.php@ 474

Last change on this file since 474 was 474, checked in by chronos, 12 years ago
  • Upraveno: Mapa sítě přepracována na aplikační modul.
File size: 4.9 KB
Line 
1<?php
2
3include_once('Common/Global.php');
4
5class PageNetworkMap extends Page
6{
7 var $FullTitle = 'Mapa sítě';
8 var $ShortTitle = 'Mapa sítě';
9 var $Load = 'initialize()';
10 var $Unload = 'GUnload()';
11
12 function Show()
13 {
14 global $Config;
15
16 $Output = '<script src="http://maps.google.com/maps?file=api&amp;v=2&amp;sensor=true&amp;key='.$Config['Web']['GoogleMapsApiKey'].'"
17 type="text/javascript">
18 </script>';
19 $Output .= '<script type="text/javascript">
20
21 var map;
22 var tinyIcon;
23
24 function initialize()
25 {
26 if (GBrowserIsCompatible())
27 {
28 map = new GMap2(document.getElementById("map_canvas"));
29 map.setMapType(G_SATELLITE_MAP);
30 map.setCenter(new GLatLng(49.260422, 18.081179), 15);
31 map.setUIToDefault();
32 map.addControl(new GOverviewMapControl(new GSize(128, 96)));
33
34
35// Create our "tiny" marker icon
36var tinyIcon = new GIcon();
37tinyIcon.image = "point.gif";
38tinyIcon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
39tinyIcon.iconSize = new GSize(10, 10);
40tinyIcon.shadowSize = new GSize(10, 10);
41tinyIcon.iconAnchor = new GPoint(5, 5);
42tinyIcon.infoWindowAnchor = new GPoint(5, 1);';
43
44 $Output .= '
45 }
46 }
47
48function toggleLabel(id)
49{
50 var ele = document.getElementById(id);
51 ele.checked = !ele.checked;
52 ele.onclick( );
53}
54
55 function UpdateNetworkLinks()
56 {
57 if ((document.getElementById("NetworkLinks")).checked == true)
58 {
59 NetworkLinks = [';
60 $DbResult = $this->Database->query('SELECT * FROM NetworkLink WHERE Interface1 <> 0 AND Interface2 <> 0');
61 while($Link = $DbResult->fetch_assoc())
62 {
63 $DbResult2 = $this->Database->query('SELECT * FROM NetworkDevice WHERE NetworkDevice.Id = (SELECT Device FROM NetworkInterface WHERE NetworkInterface.Id = '.$Link['Interface1'].')');
64 $DbResult3 = $this->Database->query('SELECT * FROM NetworkDevice WHERE NetworkDevice.Id = (SELECT Device FROM NetworkInterface WHERE NetworkInterface.Id = '.$Link['Interface2'].')');
65 if(($DbResult2->num_rows > 0) and ($DbResult3->num_rows > 0))
66 {
67 $Device1 = $DbResult2->fetch_assoc();
68 $Device2 = $DbResult3->fetch_assoc();
69 if(($Device1['Used'] == 1) and ($Device2['Used'] == 1))
70 $Output .= 'new GPolyline([new GLatLng('.$Device1['PositionLatitude'].', '.$Device1['PositionLongitude'].'),new GLatLng('.$Device2['PositionLatitude'].', '.$Device2['PositionLongitude'].')], "#4F4FBF", 3, 0.8), ';
71 }
72 }
73 $Output .= '];
74 for (var i in NetworkLinks)
75 {
76 map.addOverlay(NetworkLinks[i]);
77 }
78
79 } else { //checkbox turned off
80 for (var i in NetworkLinks)
81 {
82 map.removeOverlay(NetworkLinks[i]);
83 NetworkLinks[i] = null;
84 }
85 }
86}
87
88function toggleLabel(id)
89{
90 var ele = document.getElementById(id);
91 ele.checked = !ele.checked;
92 ele.onclick( );
93}
94
95 function UpdateNetworkDevices()
96 {
97 if ((document.getElementById("NetworkDevices")).checked == true)
98 {
99 NetworkDevices = [';
100
101 $DbResult = $this->Database->query('SELECT * FROM NetworkDevice WHERE Used=1');
102 while($Device = $DbResult->fetch_assoc())
103 {
104 $Output .= 'new GMarker(new GLatLng('.$Device['PositionLatitude'].', '.$Device['PositionLongitude'].'), {title: "'.$Device['Name'].'", icon:tinyIcon }), ';
105 }
106 $Output .= '];
107 for (var i in NetworkDevices)
108 {
109 map.addOverlay(NetworkDevices[i]);
110 }
111
112 } else { //checkbox turned off
113 for (var i in NetworkDevices)
114 {
115 map.removeOverlay(NetworkDevices[i]);
116 NetworkDevices[i] = null;
117 }
118 }
119}
120
121 </script>';
122 $Output .= '<table style="margin-left: auto; margin-right: auto; width: 100%; height: 80%;">
123 <tr>
124 <td style="width: 80%; height: 100%;">
125 <div id="map_canvas" style="width: 100%; height: 100%;"></div></td>
126 <td style="width: 20%">
127 <form>
128 <input type="checkbox" id="NetworkLinks" onClick="UpdateNetworkLinks();" >
129 <a href="" onClick="toggleLabel(\'NetworkLinks\');return false;">Ukázat spoje</a>
130 </input><br />
131 <input type="checkbox" id="NetworkDevices" onClick="UpdateNetworkDevices();" >
132 <a href="" onClick="toggleLabel(\'NetworkDevices\');return false;">Ukázat zařízení</a>
133 </input>
134 </form></td>
135 </tr>
136 </table>';
137 return($Output);
138 }
139}
140
141class ModuleMap extends AppModule
142{
143 function __construct($System)
144 {
145 parent::__construct($System);
146 $this->Name = 'Map';
147 $this->Version = '1.0';
148 $this->Creator = 'Chronos';
149 $this->License = 'GNU/GPL';
150 $this->Description = 'Show objects on Google maps';
151 $this->Dependencies = array('Network');
152 $this->SupportedModels = array();
153 }
154
155 function Start()
156 {
157 parent::Start();
158 $this->System->Pages['map'] = 'PageNetworkMap';
159 }
160}
161
162?>
Note: See TracBrowser for help on using the repository browser.