From 2713175e155bf6b3804ac460f4fdb8bd0569949c Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Thu, 12 Jan 2017 12:10:15 +0100 Subject: [PATCH] Add empty ol.format.OSMXML.prototype.write* --- src/ol/format/osmxml.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/src/ol/format/osmxml.js b/src/ol/format/osmxml.js index 4ccc4ddf72..ef3eb13b12 100644 --- a/src/ol/format/osmxml.js +++ b/src/ol/format/osmxml.js @@ -208,3 +208,24 @@ ol.format.OSMXML.prototype.readFeaturesFromNode = function(node, opt_options) { * @api stable */ ol.format.OSMXML.prototype.readProjection; + + +/** + * Not implemented. + * @inheritDoc + */ +ol.format.OSMXML.prototype.writeFeatureNode = function(feature, opt_options) {}; + + +/** + * Not implemented. + * @inheritDoc + */ +ol.format.OSMXML.prototype.writeFeaturesNode = function(features, opt_options) {}; + + +/** + * Not implemented. + * @inheritDoc + */ +ol.format.OSMXML.prototype.writeGeometryNode = function(geometry, opt_options) {};