0

Tweak fromLatLngToWorld to fix issue #381

This commit is contained in:
Andrew Chin
2011-06-01 23:15:45 -04:00
parent 733e816dbc
commit 5249aca936

View File

@@ -560,8 +560,8 @@ var overviewer = {
// Adjust for the fact that we we can't figure out what Y is given // Adjust for the fact that we we can't figure out what Y is given
// only latitude and longitude, so assume Y=64. // only latitude and longitude, so assume Y=64.
point.x += 64 + 1; point.x += 64;
point.z -= 64 + 2; point.z -= 64;
return point; return point;
}, },