git-svn-id: http://svn.openlayers.org/trunk/openlayers@9571 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
315 lines
8.5 KiB
JavaScript
315 lines
8.5 KiB
JavaScript
/**
|
|
* @requires OpenLayers/Format/WMSCapabilities.js
|
|
* @requires OpenLayers/Format/XML.js
|
|
*/
|
|
|
|
/**
|
|
* Class: OpenLayers.Format.WMSCapabilities.v1_1
|
|
* Abstract class not to be instantiated directly.
|
|
*
|
|
* Inherits from:
|
|
* - <OpenLayers.Format.XML>
|
|
*/
|
|
OpenLayers.Format.WMSCapabilities.v1_1 = OpenLayers.Class(
|
|
OpenLayers.Format.XML, {
|
|
|
|
/**
|
|
* Constructor: OpenLayers.Format.WMSCapabilities.v1_1
|
|
* Create an instance of one of the subclasses.
|
|
*
|
|
* Parameters:
|
|
* options - {Object} An optional object whose properties will be set on
|
|
* this instance.
|
|
*/
|
|
initialize: function(options) {
|
|
OpenLayers.Format.XML.prototype.initialize.apply(this, [options]);
|
|
this.options = options;
|
|
},
|
|
|
|
/**
|
|
* APIMethod: read
|
|
* Read capabilities data from a string, and return a list of layers.
|
|
*
|
|
* Parameters:
|
|
* data - {String} or {DOMElement} data to read/parse.
|
|
*
|
|
* Returns:
|
|
* {Array} List of named layers.
|
|
*/
|
|
read: function(data) {
|
|
if(typeof data == "string") {
|
|
data = OpenLayers.Format.XML.prototype.read.apply(this, [data]);
|
|
}
|
|
var capabilities = {};
|
|
var root = data.documentElement;
|
|
this.runChildNodes(capabilities, root);
|
|
return capabilities;
|
|
},
|
|
|
|
/**
|
|
* Method: runChildNodes
|
|
*/
|
|
runChildNodes: function(obj, node) {
|
|
var children = node.childNodes;
|
|
var childNode, processor;
|
|
for(var i=0; i<children.length; ++i) {
|
|
childNode = children[i];
|
|
if(childNode.nodeType == 1) {
|
|
processor = this["read_cap_" + childNode.nodeName];
|
|
if(processor) {
|
|
processor.apply(this, [obj, childNode]);
|
|
}
|
|
}
|
|
}
|
|
},
|
|
|
|
/**
|
|
* Method: read_cap_Capability
|
|
*/
|
|
read_cap_Capability: function(capabilities, node) {
|
|
var capability = {
|
|
layers: []
|
|
};
|
|
this.runChildNodes(capability, node);
|
|
capabilities.capability = capability;
|
|
},
|
|
|
|
/**
|
|
* Method: read_cap_Request
|
|
*/
|
|
read_cap_Request: function(obj, node) {
|
|
var request = {};
|
|
this.runChildNodes(request, node);
|
|
obj.request = request;
|
|
},
|
|
|
|
/**
|
|
* Method: read_cap_GetMap
|
|
*/
|
|
read_cap_GetMap: function(request, node) {
|
|
var getmap = {
|
|
formats: []
|
|
};
|
|
this.runChildNodes(getmap, node);
|
|
request.getmap = getmap;
|
|
},
|
|
|
|
/**
|
|
* Method: read_cap_Format
|
|
*/
|
|
read_cap_Format: function(obj, node) {
|
|
var format = this.getChildValue(node);
|
|
if(obj.formats) {
|
|
obj.formats.push(format);
|
|
} else {
|
|
obj.format = format;
|
|
}
|
|
},
|
|
|
|
/**
|
|
* Method: read_cap_DCPType
|
|
* Super simplified HTTP href extractor. Assumes the first online resource
|
|
* will work.
|
|
*/
|
|
read_cap_DCPType: function(obj, node) {
|
|
var children = node.getElementsByTagName("OnlineResource");
|
|
if(children.length > 0) {
|
|
this.read_cap_OnlineResource(obj, children[0]);
|
|
}
|
|
},
|
|
|
|
/**
|
|
* Method: read_cap_Service
|
|
*/
|
|
read_cap_Service: function(capabilities, node) {
|
|
var service = {};
|
|
this.runChildNodes(service, node);
|
|
capabilities.service = service;
|
|
},
|
|
|
|
/**
|
|
* Method: read_cap_Layer
|
|
*/
|
|
read_cap_Layer: function(capability, node, parentLayer) {
|
|
var layer = {
|
|
formats: capability.request.getmap.formats || [],
|
|
styles: [],
|
|
metadataURLs: [],
|
|
keywords: [],
|
|
queryable: (node.getAttribute("queryable") === "1"
|
|
|| node.getAttribute("queryable") === "true")
|
|
};
|
|
// deal with property inheritance
|
|
if(parentLayer) {
|
|
// add style
|
|
layer.styles = layer.styles.concat(parentLayer.styles);
|
|
// use llbbox
|
|
layer.llbbox = parentLayer.llbbox;
|
|
// use min/maxScale
|
|
layer.minScale = parentLayer.minScale;
|
|
layer.maxScale = parentLayer.maxScale;
|
|
}
|
|
var children = node.childNodes;
|
|
var childNode, nodeName, processor;
|
|
for(var i=0; i<children.length; ++i) {
|
|
childNode = children[i];
|
|
nodeName = childNode.nodeName;
|
|
processor = this["read_cap_" + childNode.nodeName];
|
|
if(processor) {
|
|
if(nodeName == "Layer") {
|
|
processor.apply(this, [capability, childNode, layer]);
|
|
} else {
|
|
processor.apply(this, [layer, childNode]);
|
|
}
|
|
}
|
|
}
|
|
if(layer.name) {
|
|
var index = layer.name.indexOf(":");
|
|
if(index > 0) {
|
|
layer.prefix = layer.name.substring(0, index);
|
|
}
|
|
capability.layers.push(layer);
|
|
}
|
|
},
|
|
|
|
/**
|
|
* Method: read_cap_ScaleHint
|
|
* The Layer ScaleHint element has min and max attributes that relate to
|
|
* the minimum and maximum resolution that the server supports. The
|
|
* values are pixel diagonals measured in meters (on the ground).
|
|
*/
|
|
read_cap_ScaleHint: function(layer, node) {
|
|
var min = node.getAttribute("min");
|
|
var max = node.getAttribute("max");
|
|
var rad2 = Math.pow(2, 0.5);
|
|
var ipm = OpenLayers.INCHES_PER_UNIT["m"];
|
|
layer.maxScale = parseFloat(
|
|
((min / rad2) * ipm * OpenLayers.DOTS_PER_INCH).toPrecision(13)
|
|
);
|
|
layer.minScale = parseFloat(
|
|
((max / rad2) * ipm * OpenLayers.DOTS_PER_INCH).toPrecision(13)
|
|
);
|
|
},
|
|
|
|
/**
|
|
* Method: read_cap_Name
|
|
*/
|
|
read_cap_Name: function(obj, node) {
|
|
var name = this.getChildValue(node);
|
|
if(name) {
|
|
obj.name = name;
|
|
}
|
|
},
|
|
|
|
/**
|
|
* Method: read_cap_Title
|
|
*/
|
|
read_cap_Title: function(obj, node) {
|
|
var title = this.getChildValue(node);
|
|
if(title) {
|
|
obj.title = title;
|
|
}
|
|
},
|
|
|
|
/**
|
|
* Method: read_cap_Abstract
|
|
*/
|
|
read_cap_Abstract: function(obj, node) {
|
|
var abst = this.getChildValue(node);
|
|
if(abst) {
|
|
obj["abstract"] = abst;
|
|
}
|
|
},
|
|
|
|
/**
|
|
* Method: read_cap_Attribution
|
|
*/
|
|
read_cap_Attribution: function(obj, node) {
|
|
var attribution = {};
|
|
this.runChildNodes(attribution, node);
|
|
obj.attribution = attribution;
|
|
},
|
|
|
|
/**
|
|
* Method: read_cap_LogoURL
|
|
*/
|
|
read_cap_LogoURL: function(obj, node) {
|
|
obj.logo = {
|
|
width: node.getAttribute("width"),
|
|
height: node.getAttribute("height")
|
|
};
|
|
this.runChildNodes(obj.logo, node);
|
|
},
|
|
|
|
/**
|
|
* Method: read_cap_MetadataURL
|
|
*/
|
|
read_cap_MetadataURL: function(layer, node) {
|
|
var metadataURL = {};
|
|
this.runChildNodes(metadataURL, node);
|
|
metadataURL.type = node.getAttribute("type");
|
|
layer.metadataURLs.push(metadataURL);
|
|
},
|
|
|
|
/**
|
|
* Method: read_cap_KeywordList
|
|
*/
|
|
read_cap_KeywordList: function(layer, node) {
|
|
var obj = layer;
|
|
this.runChildNodes(obj, node);
|
|
},
|
|
|
|
/**
|
|
* Method: read_cap_Keyword
|
|
*/
|
|
read_cap_Keyword: function(obj, node) {
|
|
if(obj.keywords) {
|
|
obj.keywords.push(this.getChildValue(node));
|
|
}
|
|
},
|
|
|
|
/**
|
|
* Method: read_cap_LatLonBoundingBox
|
|
*/
|
|
read_cap_LatLonBoundingBox: function(layer, node) {
|
|
layer.llbbox = [
|
|
parseFloat(node.getAttribute("minx")),
|
|
parseFloat(node.getAttribute("miny")),
|
|
parseFloat(node.getAttribute("maxx")),
|
|
parseFloat(node.getAttribute("maxy"))
|
|
];
|
|
},
|
|
|
|
/**
|
|
* Method: read_cap_Style
|
|
*/
|
|
read_cap_Style: function(layer, node) {
|
|
var style = {};
|
|
this.runChildNodes(style, node);
|
|
layer.styles.push(style);
|
|
},
|
|
|
|
/**
|
|
* Method: read_cap_LegendURL
|
|
*/
|
|
read_cap_LegendURL: function(style, node) {
|
|
style.legend = {
|
|
width: node.getAttribute("width"),
|
|
height: node.getAttribute("height")
|
|
};
|
|
this.runChildNodes(style.legend, node);
|
|
},
|
|
|
|
/**
|
|
* Method: read_cap_OnlineResource
|
|
*/
|
|
read_cap_OnlineResource: function(obj, node) {
|
|
obj.href = this.getAttributeNS(
|
|
node, "http://www.w3.org/1999/xlink", "href"
|
|
);
|
|
},
|
|
|
|
CLASS_NAME: "OpenLayers.Format.WMSCapabilities.v1_1"
|
|
|
|
});
|