diff --git a/src/ol/geom/multipoint.js b/src/ol/geom/multipoint.js index 0916f0db8c..e2eeb8c1dd 100644 --- a/src/ol/geom/multipoint.js +++ b/src/ol/geom/multipoint.js @@ -20,7 +20,7 @@ goog.require('ol.math'); * @extends {ol.geom.SimpleGeometry} * @param {ol.geom.RawMultiPoint} coordinates Coordinates. * @param {ol.geom.GeometryLayout=} opt_layout Layout. - * @api + * @api stable */ ol.geom.MultiPoint = function(coordinates, opt_layout) { goog.base(this); @@ -32,7 +32,7 @@ goog.inherits(ol.geom.MultiPoint, ol.geom.SimpleGeometry); /** * @param {ol.geom.Point} point Point. - * @api + * @api stable */ ol.geom.MultiPoint.prototype.appendPoint = function(point) { goog.asserts.assert(point.getLayout() == this.layout); @@ -47,7 +47,7 @@ ol.geom.MultiPoint.prototype.appendPoint = function(point) { /** * @inheritDoc - * @api + * @api stable */ ol.geom.MultiPoint.prototype.clone = function() { var multiPoint = new ol.geom.MultiPoint(null); @@ -85,7 +85,7 @@ ol.geom.MultiPoint.prototype.closestPointXY = /** * @return {ol.geom.RawMultiPoint} Coordinates. - * @api + * @api stable */ ol.geom.MultiPoint.prototype.getCoordinates = function() { return ol.geom.flat.inflate.coordinates( @@ -96,7 +96,7 @@ ol.geom.MultiPoint.prototype.getCoordinates = function() { /** * @param {number} index Index. * @return {ol.geom.Point} Point. - * @api + * @api stable */ ol.geom.MultiPoint.prototype.getPoint = function(index) { var n = goog.isNull(this.flatCoordinates) ? @@ -114,7 +114,7 @@ ol.geom.MultiPoint.prototype.getPoint = function(index) { /** * @return {Array.