Fixed kzed map scrolling on higher zoom levels

This commit is contained in:
zeeZ 2011-05-14 20:32:18 +08:00 committed by Christian
parent 7ff33f04a0
commit 491e88f745

View File

@ -1,8 +1,8 @@
function KzedProjection() {}
KzedProjection.prototype = {
fromLatLngToPoint: function(latLng) {
var x = (latLng.lng() * config.tileWidth)|0;
var y = (latLng.lat() * config.tileHeight)|0;
var x = latLng.lng() * config.tileWidth;
var y = latLng.lat() * config.tileHeight;
return new google.maps.Point(x, y);
},