Restore the code before the testing svg.

This commit is contained in:
mdtrooper 2016-02-22 17:17:03 +01:00
parent c66445d3a5
commit 952dd081ab
2 changed files with 5 additions and 24 deletions

View File

@ -145,14 +145,6 @@ abstract class Map {
}
?>
<svg xmlns="http://www.w3.org/2000/svg" pointer-events="all" width="<?php echo $width;?>" height="<?php echo $height;?>">
<g class="viewport2">
<g class="first">
<circle cx="100" cy="100" r="90" fill="green"></circle>
</g>
<g class="second">
<rect x="200" y="200" height="90" width="90" fill="blue"></rect>
</g>
</g>
</svg>
</div>

View File

@ -67,29 +67,18 @@ Return void
This function paint the nodes
*/
MapController.prototype.paint_nodes = function() {
this._viewport.selectAll(".node")
.data(['caca'])
.data(nodes)
.enter()
.append("g")
.attr("transform",
function(d) { return "translate(300 100)";})
function(d) { return "translate(" + d['x'] + " " + d['y'] + ")";})
.append("circle")
.attr("id", function(d) { return "node_caca";})
.attr("id", function(d) { return "node_" + d['id'];})
.attr("class", "node")
.attr("style", "fill: rgb(50, 50, 128);")
.attr("r", "60");
//~ this._viewport.selectAll(".node")
//~ .data(nodes)
//~ .enter()
//~ .append("g")
//~ .attr("transform",
//~ function(d) { return "translate(" + d['x'] + " " + d['y'] + ")";})
//~ .append("circle")
//~ .attr("id", function(d) { return "node_" + d['id'];})
//~ .attr("class", "node")
//~ .attr("style", "fill: rgb(50, 50, 128);")
//~ .attr("r", "6");
.attr("r", "6");
}
/*