latest stock site update changed the quadkey construction - updated to match

This commit is contained in:
Jon Atkins 2014-05-06 01:44:10 +01:00
parent 937fedcad9
commit abb0fcd638

View File

@ -139,7 +139,10 @@ window.tileToLat = function(y, params) {
} }
window.pointToTileId = function(params, x, y) { window.pointToTileId = function(params, x, y) {
return params.zoom + "_" + x + "_" + y; //change to quadkey construction
//as of 2014-05-06: zoom_x_y_minlvl_maxlvl_maxhealth
return params.zoom + "_" + x + "_" + y + "_" + params.level + "_8_100";
} }