Changing extent structure back to single array: [minX, minY, maxX, maxY]
This means we'll have to have a new structure and new methods for 3D envelopes.
This commit is contained in:
@@ -5,7 +5,7 @@ describe('ol.source.wms', function() {
|
||||
describe('ol.source.wms.getUrl', function() {
|
||||
it('creates expected URL', function() {
|
||||
var epsg3857 = ol.proj.get('EPSG:3857');
|
||||
var extent = [[-20037508.342789244, -20037508.342789244], [0, 0]];
|
||||
var extent = [-20037508.342789244, -20037508.342789244, 0, 0];
|
||||
var expected = 'http://wms?SERVICE=WMS&VERSION=1.3.0&REQUEST=' +
|
||||
'GetMap&FORMAT=image%2Fpng&TRANSPARENT=true&WIDTH=256&HEIGHT=256&' +
|
||||
'foo=bar&STYLES=&CRS=EPSG%3A3857&BBOX=' +
|
||||
@@ -16,7 +16,7 @@ describe('ol.source.wms', function() {
|
||||
});
|
||||
it('creates expected URL respecting axis orientation', function() {
|
||||
var epsg4326 = ol.proj.get('EPSG:4326');
|
||||
var extent = [[-180, -90], [0, 90]];
|
||||
var extent = [-180, -90, 0, 90];
|
||||
var expected = 'http://wms?SERVICE=WMS&VERSION=1.3.0&REQUEST=' +
|
||||
'GetMap&FORMAT=image%2Fpng&TRANSPARENT=true&WIDTH=256&HEIGHT=256&' +
|
||||
'foo=bar&STYLES=&CRS=EPSG%3A4326&BBOX=-90%2C-180%2C90%2C0';
|
||||
|
||||
Reference in New Issue
Block a user