Merge pull request #407 from ahocevar/alwaysInRange
alwaysInRange not updated when using addOptions. r=@elemoine,@bartvde
This commit is contained in:
@@ -174,6 +174,16 @@
|
||||
t.eq(log, 0, "addOptions doesn't call initResolutions when layer is not in map");
|
||||
}
|
||||
|
||||
function test_addOptionsScale(t) {
|
||||
t.plan(1);
|
||||
var map = new OpenLayers.Map("map");
|
||||
var layer = new OpenLayers.Layer.WMS();
|
||||
map.addLayer(layer);
|
||||
map.zoomToMaxExtent();
|
||||
layer.addOptions({maxResolution: 0.5, numZoomLevels: 15});
|
||||
t.eq(layer.alwaysInRange, false, "alwaysInRange should not be true anymore");
|
||||
}
|
||||
|
||||
function test_Layer_StandardOptionsAccessors (t) {
|
||||
|
||||
t.plan( 4 );
|
||||
|
||||
Reference in New Issue
Block a user