rename parser files to have parser as part of their filename, so they follow the ol3 conventions

This commit is contained in:
Bart van den Eijnden
2013-09-13 11:05:00 +02:00
parent 99f2d0e3d5
commit d8ae3c161c
36 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
goog.provide('ol.parser.ogc.WMSCapabilities_v1_1_1');
goog.require('goog.object');
goog.require('ol.parser.ogc.WMSCapabilities_v1_1');
/**
* Read [WMS](http://www.opengeospatial.org/standards/wms) capabilities
* version 1.1.1
*
* @constructor
* @extends {ol.parser.ogc.WMSCapabilities_v1_1}
*/
ol.parser.ogc.WMSCapabilities_v1_1_1 = function() {
goog.base(this);
this.version = '1.1.1';
goog.object.extend(this.readers['http://www.opengis.net/wms'], {
'SRS': function(node, obj) {
obj['srs'][this.getChildValue(node)] = true;
}
});
};
goog.inherits(ol.parser.ogc.WMSCapabilities_v1_1_1,
ol.parser.ogc.WMSCapabilities_v1_1);