From 2def7c187e32d99cd48c013ab117c463780ed45e Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Fri, 13 Aug 2010 00:09:41 +0100 Subject: [PATCH] Don't process overlay layers in old-style layer configurations There are no overlay layers that we actually want to be persistent, and the removal of the maplint layer means that old configurations generally open the wrong overlays now anyway. --- public/javascripts/map.js | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/public/javascripts/map.js b/public/javascripts/map.js index 272913d20..0668b8ab0 100644 --- a/public/javascripts/map.js +++ b/public/javascripts/map.js @@ -244,20 +244,6 @@ function setMapLayers(layerConfig) { map.setBaseLayer(layers[i]); } } - - while (layerConfig.charAt(l) == "B" || layerConfig.charAt(l) == "0") { - l++; - } - - for (var layers = map.getLayersBy("isBaseLayer", false), i = 0; i < layers.length; i++) { - var c = layerConfig.charAt(l++); - - if (c == "T") { - layers[i].setVisibility(true); - } else if(c == "F") { - layers[i].setVisibility(false); - } - } } else { for (var i = 0; i < map.layers.length; i++) { if (map.layers[i].layerCode) { -- 2.43.2