From 43720fc81d1607aecc8522eb8b4a1bd619e2ad15 Mon Sep 17 00:00:00 2001 From: Tom Payne Date: Mon, 3 Feb 2014 14:37:06 +0100 Subject: [PATCH] Add stability annotation to ol.geom.LineString --- src/ol/geom/linestring.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/ol/geom/linestring.js b/src/ol/geom/linestring.js index 3f94e05a72..f9bb114e2b 100644 --- a/src/ol/geom/linestring.js +++ b/src/ol/geom/linestring.js @@ -14,6 +14,7 @@ goog.require('ol.geom.simplify'); * @extends {ol.geom.SimpleGeometry} * @param {ol.geom.RawLineString} coordinates Coordinates. * @param {ol.geom.GeometryLayout=} opt_layout Layout. + * @todo stability experimental */ ol.geom.LineString = function(coordinates, opt_layout) { @@ -69,6 +70,7 @@ ol.geom.LineString.prototype.closestPointXY = /** * @return {ol.geom.RawLineString} Coordinates. + * @todo stability experimental */ ol.geom.LineString.prototype.getCoordinates = function() { return ol.geom.flat.inflateCoordinates( @@ -78,6 +80,7 @@ ol.geom.LineString.prototype.getCoordinates = function() { /** * @return {number} Length. + * @todo stability experimental */ ol.geom.LineString.prototype.getLength = function() { return ol.geom.flat.lineStringLength( @@ -112,6 +115,7 @@ ol.geom.LineString.prototype.getType = function() { /** * @param {ol.geom.RawLineString} coordinates Coordinates. * @param {ol.geom.GeometryLayout=} opt_layout Layout. + * @todo stability experimental */ ol.geom.LineString.prototype.setCoordinates = function(coordinates, opt_layout) {