diff --git a/pandora_console/include/class/Map.class.php b/pandora_console/include/class/Map.class.php index c53b69b171..951f5e3088 100644 --- a/pandora_console/include/class/Map.class.php +++ b/pandora_console/include/class/Map.class.php @@ -36,7 +36,7 @@ abstract class Map { $this->requires_js = array(); $this->requires_js[] = "include/javascript/d3.3.5.14.js"; - //~ $this->requires_js[] = "include/javascript/map/MapController.js"; + $this->requires_js[] = "include/javascript/map/MapController.js"; } private function loadDB() { diff --git a/pandora_console/include/class/Networkmap.class.php b/pandora_console/include/class/Networkmap.class.php index 208f46db30..47fb1b6888 100644 --- a/pandora_console/include/class/Networkmap.class.php +++ b/pandora_console/include/class/Networkmap.class.php @@ -25,7 +25,7 @@ class Networkmap extends Map { public function __construct($id) { parent::__construct($id); - //~ $this->requires_js[] = "include/javascript/map/NetworkMapController.js"; + $this->requires_js[] = "include/javascript/map/NetworkmapController.js"; } public function show() { diff --git a/pandora_console/include/javascript/map/MapController.js b/pandora_console/include/javascript/map/MapController.js index 4eaa320653..c2cda8d6e5 100644 --- a/pandora_console/include/javascript/map/MapController.js +++ b/pandora_console/include/javascript/map/MapController.js @@ -12,6 +12,24 @@ // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. -var MapController = function() { - +var MapController = function(target) { + this._target = target; } + +MapController.prototype.init_map = function() { + $("#" + this._target + " svg").append( + $("").append( + $("") + .attr("id", "node_10") + .attr("class", "node") + .attr("cx", "100") + .attr("cy", "100") + .attr("style", "fill: rgb(128, 186, 39);") + .attr("r", "5") + ) + ); +}; + +MapController.prototype.test333 = function(aaa) { + console.log(aaa); +} \ No newline at end of file diff --git a/pandora_console/include/javascript/map/NetworkmapController.js b/pandora_console/include/javascript/map/NetworkmapController.js new file mode 100644 index 0000000000..b3dd77db43 --- /dev/null +++ b/pandora_console/include/javascript/map/NetworkmapController.js @@ -0,0 +1,20 @@ +// Pandora FMS - http://pandorafms.com +// ================================================== +// Copyright (c) 2005-2010 Artica Soluciones Tecnologicas +// Please see http://pandorafms.org for full contribution list + +// This program is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public License +// as published by the Free Software Foundation; version 2 + +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +var NetworkmapController = function(target) { + MapController.call(this, target); +} + +NetworkmapController.prototype = new MapController(); +NetworkmapController.prototype.constructor = NetworkmapController; \ No newline at end of file