save the resourceUrl elements into the WMTS capabilities object. r=bartvde (closes #2986)

git-svn-id: http://svn.openlayers.org/trunk/openlayers@11142 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Frédéric Junod
2011-02-18 07:14:27 +00:00
parent 95380a512c
commit 95d8cd3473
2 changed files with 21 additions and 3 deletions

View File

@@ -191,7 +191,14 @@ OpenLayers.Format.WMTSCapabilities.v1_0_0 = OpenLayers.Class(
},
"MatrixHeight": function(node, obj) {
obj.matrixHeight = parseInt(this.getChildValue(node));
},
},
"ResourceURL": function(node, obj) {
obj.resourceUrl = obj.resourceUrl || {};
obj.resourceUrl[node.getAttribute("resourceType")] = {
format: node.getAttribute("format"),
template: node.getAttribute("template")
};
},
// not used for now, can be added in the future though
/*"Themes": function(node, obj) {
obj.themes = [];