From 9388056ecdde42c5c643b86bf2f1cdfad9f28c3b Mon Sep 17 00:00:00 2001 From: makefu Date: Tue, 25 Jun 2013 11:18:03 +0200 Subject: update map to handle all the shit correctly --- retiolum/scripts/adv_graphgen/map.html | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'retiolum/scripts') diff --git a/retiolum/scripts/adv_graphgen/map.html b/retiolum/scripts/adv_graphgen/map.html index f66832d1..ef8a0565 100644 --- a/retiolum/scripts/adv_graphgen/map.html +++ b/retiolum/scripts/adv_graphgen/map.html @@ -47,11 +47,9 @@ $.getJSON("marker.json",function (data){ $.each(data,function (k,v) { - jitter1=0.005 - Math.random()*0.01 - jitter2=0.005 - Math.random()*0.01 // add initial marker - var pt=new google.maps.LatLng(jitter1+v["latitude"],jitter2+v["longitude"]) + var pt=new google.maps.LatLng(v["latitude"],v["longitude"]) var marker= new google.maps.Marker({ id: k,map:map,title: k,position:pt,content:k}) -- cgit v1.2.3