Whitespace
This commit is contained in:
@@ -63,30 +63,24 @@ OpenLayers.Format.WCSCapabilities.v1_1_0 = OpenLayers.Class(
|
||||
"Capabilities": function(node, obj) { // In 1.0.0, this was WCS_Capabilties, in 1.1.0, it's just Capabilities
|
||||
this.readChildNodes(node, obj);
|
||||
},
|
||||
|
||||
"Contents": function(node, request) {
|
||||
request.contents = [];
|
||||
this.readChildNodes(node, request.contents);
|
||||
},
|
||||
|
||||
"CoverageSummary": function(node, contents) {
|
||||
var coverageSummary = {};
|
||||
this.readChildNodes(node, coverageSummary); // Read the summary
|
||||
contents.push(coverageSummary); // Add it to the contents array
|
||||
},
|
||||
|
||||
"Identifier": function(node, coverageSummary) {
|
||||
coverageSummary.identifier = this.getChildValue(node);
|
||||
},
|
||||
|
||||
"Title": function(node, coverageSummary) {
|
||||
coverageSummary.title = this.getChildValue(node);
|
||||
},
|
||||
|
||||
"Abstract": function(node, coverageSummary) {
|
||||
coverageSummary.abstract = this.getChildValue(node);
|
||||
},
|
||||
|
||||
"SupportedCRS": function(node, coverageSummary) {
|
||||
var crs = this.getChildValue(node);
|
||||
if(crs) {
|
||||
@@ -96,7 +90,6 @@ OpenLayers.Format.WCSCapabilities.v1_1_0 = OpenLayers.Class(
|
||||
coverageSummary["supportedCRS"].push(crs);
|
||||
}
|
||||
},
|
||||
|
||||
"SupportedFormat": function(node, coverageSummary) {
|
||||
var format = this.getChildValue(node);
|
||||
if(format) {
|
||||
@@ -107,7 +100,6 @@ OpenLayers.Format.WCSCapabilities.v1_1_0 = OpenLayers.Class(
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
}, OpenLayers.Format.WCSCapabilities.v1.prototype.readers["wcs"]),
|
||||
"ows": OpenLayers.Format.OWSCommon.v1.prototype.readers["ows"]
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user