Arg order for extent function in expressions

This commit is contained in:
Tim Schaub
2013-09-03 17:42:33 -06:00
parent 6955499534
commit 208d86b5bf
2 changed files with 7 additions and 7 deletions

View File

@@ -688,10 +688,10 @@ describe('ol.expr.lib', function() {
]])
});
var north = parse('extent(-100, 100, 40, 60)');
var south = parse('extent(-100, 100, -60, -40)');
var east = parse('extent(80, 100, -50, 50)');
var west = parse('extent(-100, -80, -50, 50)');
var north = parse('extent(-100, 40, 100, 60)');
var south = parse('extent(-100, -60, 100, -40)');
var east = parse('extent(80, -50, 100, 50)');
var west = parse('extent(-100, -50, -80, 50)');
it('evaluates to true for features within given extent', function() {