From 7997c9c8e3d34150b6a3ec812c10a1340cd02a2a Mon Sep 17 00:00:00 2001 From: Jon Atkins Date: Tue, 7 Jan 2014 08:12:20 +0000 Subject: [PATCH] change the commented out list of zoom to portal level mappings to match those in the intel site update of 2014-01-06 IITC still drops a zoom level slightly sooner at this time, but not so much now (were niantic inspired by IITC here?) --- code/utils_misc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/utils_misc.js b/code/utils_misc.js index 09f8b7cc..ca97e2fe 100644 --- a/code/utils_misc.js +++ b/code/utils_misc.js @@ -282,7 +282,7 @@ window.getMinPortalLevelForZoom = function(z) { // these values are from the stock intel map. however, they're too detailed for reasonable speed, and increasing // detail at a higher zoom level shows enough detail still, AND speeds up IITC considerably -//var ZOOM_TO_LEVEL = [8, 8, 8, 8, 7, 7, 6, 6, 5, 4, 4, 3, 3, 2, 2, 1, 1]; +//var ZOOM_TO_LEVEL = [8, 8, 8, 8, 7, 7, 7, 6, 6, 5, 4, 4, 3, 2, 2, 1, 1]; var ZOOM_TO_LEVEL = [8, 8, 8, 8, 8, 7, 7, 7, 6, 5, 4, 4, 3, 2, 2, 1, 1]; var l = ZOOM_TO_LEVEL[z] || 0;