Fixed kzed map scrolling on higher zoom levels

This commit is contained in:
zeeZ 2011-05-14 14:32:18 +02:00
parent 5d267e0521
commit bb8e98e941

View file

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