From 5249aca936785e2ecbf37b20311dacbaa26d58bd Mon Sep 17 00:00:00 2001 From: Andrew Chin Date: Wed, 1 Jun 2011 23:15:45 -0400 Subject: [PATCH] Tweak fromLatLngToWorld to fix issue #381 --- web_assets/overviewer.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web_assets/overviewer.js b/web_assets/overviewer.js index d8673c1..94bb8cc 100644 --- a/web_assets/overviewer.js +++ b/web_assets/overviewer.js @@ -560,8 +560,8 @@ var overviewer = { // Adjust for the fact that we we can't figure out what Y is given // only latitude and longitude, so assume Y=64. - point.x += 64 + 1; - point.z -= 64 + 2; + point.x += 64; + point.z -= 64; return point; },