diff --git a/web/js/flatmap.js b/web/js/flatmap.js index 1694c0e0..ad2c8a9a 100644 --- a/web/js/flatmap.js +++ b/web/js/flatmap.js @@ -1,8 +1,8 @@ var FlatProjection = DynmapProjection.extend({ fromLocationToLatLng: function(location) { return new L.LatLng( - -location.z / (8 << this.options.mapzoomout), - location.x / (8 << this.options.mapzoomout), + -location.z / (1 << this.options.mapzoomout), + location.x / (1 << this.options.mapzoomout), true); } });