From: drowe67 Date: Tue, 7 Dec 2010 02:05:12 +0000 (+0000) Subject: enabled lines between nodes and changed initial offset when multiple nodes found X-Git-Url: http://git.whiteaudio.com/gitweb/?a=commitdiff_plain;h=21dad4989b73d9c1209f16173c6dbd2b646f1f72;p=freetel-svn-tracking.git enabled lines between nodes and changed initial offset when multiple nodes found git-svn-id: https://svn.code.sf.net/p/freetel/code@257 01035d8c-6547-0410-b346-abe4f91aad63 --- diff --git a/dilimesh/dilimesh/dilimesh.html b/dilimesh/dilimesh/dilimesh.html index a72d3cbc..d4ca6cbf 100644 --- a/dilimesh/dilimesh/dilimesh.html +++ b/dilimesh/dilimesh/dilimesh.html @@ -197,7 +197,7 @@ if (node_exists == 0) { // small offset makes sure we don't create them all on one spot - var location = new google.maps.LatLng(lat + 1E-3*nodes.length, lng); + var location = new google.maps.LatLng(lat + 1E-4*nodes.length, lng); placeMarker(location, vis.data[i].router, true); } } @@ -222,7 +222,7 @@ if (node_exists == 0) { // small offset makes sure we don't create them all on one spot - var location = new google.maps.LatLng(lat + 1E-5*nodes.length, lng); + var location = new google.maps.LatLng(lat + 1E-4*nodes.length, lng); placeMarker(location, vis.data[i].neighbour, true); } } @@ -231,7 +231,7 @@ // now all nodes are logged in text file and nodes database // lets see if we any have routes between them - //drawPathesBetweenNodes(); + drawPathesBetweenNodes(); }