Arg order for extent function in expressions
This commit is contained in:
@@ -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() {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user