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