Add new ol.source.WMTS#getVersion api function

This commit is contained in:
Frederic Junod
2015-03-02 09:33:35 +01:00
parent 61d2506970
commit b42a214252
+16 -2
View File
@@ -40,7 +40,12 @@ ol.source.WMTS = function(options) {
// TODO: add support for TileMatrixLimits // TODO: add support for TileMatrixLimits
var version = goog.isDef(options.version) ? options.version : '1.0.0'; /**
* @private
* @type {string}
*/
this.version_ = goog.isDef(options.version) ? options.version : '1.0.0';
var format = goog.isDef(options.format) ? options.format : 'image/jpeg'; var format = goog.isDef(options.format) ? options.format : 'image/jpeg';
/** /**
@@ -90,7 +95,7 @@ ol.source.WMTS = function(options) {
goog.object.extend(context, { goog.object.extend(context, {
'Service': 'WMTS', 'Service': 'WMTS',
'Request': 'GetTile', 'Request': 'GetTile',
'Version': version, 'Version': this.version_,
'Format': format 'Format': format
}); });
} }
@@ -244,6 +249,15 @@ ol.source.WMTS.prototype.getStyle = function() {
}; };
/**
* @return {string} Version.
* @api
*/
ol.source.WMTS.prototype.getVersion = function() {
return this.version_;
};
/** /**
* @private * @private
*/ */