I was interested to see testcases for geobound search requests where just a single geobound parameter is supplied, e.g.
it("should work with geobound-minlat only", function() {
return chai.request(settings.getBaseURL())
.get(catUrl + '&geobound-minlat=50.1242')
.then(function(res) {
res.body.should.have.property('items').which.has.length(1);
});
});
However there was this line in the specification document:
Where a geographic search request is performed, the client shall include the query parameters set out in Table 14
I'd taken this to mean that for a geobound search all four parameters were required (i.e. geobound-minlong, geobound-maxlong, geobound-minlat and geobound-maxlat), and the server should return an error of some sort?
I was interested to see testcases for geobound search requests where just a single geobound parameter is supplied, e.g.
However there was this line in the specification document:
I'd taken this to mean that for a geobound search all four parameters were required (i.e.
geobound-minlong
,geobound-maxlong
,geobound-minlat
andgeobound-maxlat
), and the server should return an error of some sort?