From fc3c5be36ce649a6302aad24f76dcf63559cda39 Mon Sep 17 00:00:00 2001 From: FrozenCow Date: Mon, 18 Jul 2011 03:43:13 +0200 Subject: [PATCH] Removed debug. --- web/css/dynmap_style.css | 6 +++--- web/js/hdmap.js | 1 - 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/web/css/dynmap_style.css b/web/css/dynmap_style.css index b9d4785b..5aa9d7ae 100644 --- a/web/css/dynmap_style.css +++ b/web/css/dynmap_style.css @@ -1,8 +1,8 @@ -/* DEBUGGING */ -.leaflet-tile { +/* TILE DEBUGGING */ +/*.leaflet-tile { margin: -1; border: 1px solid red; -} +}*/ /******************* diff --git a/web/js/hdmap.js b/web/js/hdmap.js index adf2d08b..4f7d5681 100644 --- a/web/js/hdmap.js +++ b/web/js/hdmap.js @@ -1,7 +1,6 @@ var HDProjection = DynmapProjection.extend({ fromLocationToLatLng: function(location) { var wtp = this.options.worldtomap; - console.log(wtp); var xx = wtp[0]*location.x + wtp[1]*location.y + wtp[2]*location.z; var yy = wtp[3]*location.x + wtp[4]*location.y + wtp[5]*location.z; var lat = xx / (8 << this.options.extrazoom);