Move Options to ol/format/GMLBase

This commit is contained in:
Tim Schaub
2018-03-11 22:15:11 -06:00
parent 458383c7d3
commit 2091629922
6 changed files with 42 additions and 134 deletions

View File

@@ -26,12 +26,12 @@ const schemaLocation = GMLNS + ' http://schemas.opengis.net/gml/2.1.2/feature.xs
* version 2.1.2.
*
* @constructor
* @param {olx.format.GMLOptions=} opt_options Optional configuration object.
* @param {module:ol/format/GMLBase~Options=} opt_options Optional configuration object.
* @extends {ol.format.GMLBase}
* @api
*/
const GML2 = function(opt_options) {
const options = /** @type {olx.format.GMLOptions} */
const options = /** @type {module:ol/format/GMLBase~Options} */
(opt_options ? opt_options : {});
GMLBase.call(this, options);