Added full suite of wcs 1.1.0 tests, all are passing
This commit is contained in:
@@ -65,15 +65,14 @@ OpenLayers.Format.WCSCapabilities.v1_1_0 = OpenLayers.Class(
|
|||||||
},
|
},
|
||||||
|
|
||||||
"Contents": function(node, request) {
|
"Contents": function(node, request) {
|
||||||
var contents = [];
|
request.contents = [];
|
||||||
this.readChildNodes(node, contents);
|
this.readChildNodes(node, request.contents);
|
||||||
|
|
||||||
request.contents = contents;
|
|
||||||
},
|
},
|
||||||
|
|
||||||
"CoverageSummary": function(node, contents) {
|
"CoverageSummary": function(node, contents) {
|
||||||
contents.coverageSummary = {};
|
var coverageSummary = {};
|
||||||
this.readChildNodes(node, contents.coverageSummary);
|
this.readChildNodes(node, coverageSummary); // Read the summary
|
||||||
|
contents.push(coverageSummary); // Add it to the contents array
|
||||||
},
|
},
|
||||||
|
|
||||||
"Identifier": function(node, coverageSummary) {
|
"Identifier": function(node, coverageSummary) {
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user