diff --git a/src/ol/geom/geometry.js b/src/ol/geom/geometry.js index 838375025c..b2a5f766cc 100644 --- a/src/ol/geom/geometry.js +++ b/src/ol/geom/geometry.js @@ -203,14 +203,6 @@ ol.geom.Geometry.prototype.transform = function(source, destination) { }; -/** - * Array representation of a multilinestring. - * @typedef {Array.>} - * @api stable - */ -ol.geom.RawMultiLineString; - - /** * Array representation of a multipolygon. * @typedef {Array.>>} diff --git a/src/ol/geom/multilinestring.js b/src/ol/geom/multilinestring.js index 138d233cb0..e508833234 100644 --- a/src/ol/geom/multilinestring.js +++ b/src/ol/geom/multilinestring.js @@ -20,7 +20,7 @@ goog.require('ol.geom.flat.simplify'); * * @constructor * @extends {ol.geom.SimpleGeometry} - * @param {ol.geom.RawMultiLineString} coordinates Coordinates. + * @param {Array.>} coordinates Coordinates. * @param {ol.geom.GeometryLayout=} opt_layout Layout. * @api stable */ @@ -139,7 +139,7 @@ ol.geom.MultiLineString.prototype.getCoordinateAtM = /** - * @return {ol.geom.RawMultiLineString} Coordinates. + * @return {Array.>} Coordinates. * @api stable */ ol.geom.MultiLineString.prototype.getCoordinates = function() { @@ -244,7 +244,7 @@ ol.geom.MultiLineString.prototype.getType = function() { /** - * @param {ol.geom.RawMultiLineString} coordinates Coordinates. + * @param {Array.>} coordinates Coordinates. * @param {ol.geom.GeometryLayout=} opt_layout Layout. * @api stable */