Pass options from v2 to its parent constructor
This commit is contained in:
@@ -24,12 +24,13 @@ goog.require('ol.xml');
|
|||||||
*/
|
*/
|
||||||
ol.format.GML.v2 = function(opt_options) {
|
ol.format.GML.v2 = function(opt_options) {
|
||||||
|
|
||||||
goog.base(this);
|
goog.base(this, opt_options);
|
||||||
};
|
};
|
||||||
goog.inherits(ol.format.GML.v2, ol.format.GML);
|
goog.inherits(ol.format.GML.v2, ol.format.GML);
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @const
|
||||||
* @private
|
* @private
|
||||||
* @type {string}
|
* @type {string}
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user