Add @api stable annotations for Polyline format

This commit is contained in:
Éric Lemoine
2014-08-26 10:45:10 +02:00
parent a09b5d61ae
commit ceb0cc54ce
2 changed files with 7 additions and 7 deletions

View File

@@ -1371,7 +1371,7 @@ olx.format.PolylineOptions;
* The factor by which the coordinates values will be scaled.
* Default is `1e5`.
* @type {number}
* @api
* @api stable
*/
olx.format.PolylineOptions.prototype.factor;

View File

@@ -15,7 +15,7 @@ goog.require('ol.proj');
* @extends {ol.format.TextFeature}
* @param {olx.format.PolylineOptions=} opt_options
* Optional configuration object.
* @api
* @api stable
*/
ol.format.Polyline = function(opt_options) {
@@ -256,7 +256,7 @@ ol.format.Polyline.encodeUnsignedInteger = function(num) {
* @param {ArrayBuffer|Document|Node|Object|string} source Source.
* @param {olx.format.ReadOptions=} opt_options Read options.
* @return {ol.Feature} Feature.
* @api
* @api stable
*/
ol.format.Polyline.prototype.readFeature;
@@ -278,7 +278,7 @@ ol.format.Polyline.prototype.readFeatureFromText = function(text, opt_options) {
* @param {ArrayBuffer|Document|Node|Object|string} source Source.
* @param {olx.format.ReadOptions=} opt_options Read options.
* @return {Array.<ol.Feature>} Features.
* @api
* @api stable
*/
ol.format.Polyline.prototype.readFeatures;
@@ -300,7 +300,7 @@ ol.format.Polyline.prototype.readFeaturesFromText =
* @param {ArrayBuffer|Document|Node|Object|string} source Source.
* @param {olx.format.ReadOptions=} opt_options Read options.
* @return {ol.geom.Geometry} Geometry.
* @api
* @api stable
*/
ol.format.Polyline.prototype.readGeometry;
@@ -327,7 +327,7 @@ ol.format.Polyline.prototype.readGeometryFromText =
* @function
* @param {ArrayBuffer|Document|Node|Object|string} source Source.
* @return {ol.proj.Projection} Projection.
* @api
* @api stable
*/
ol.format.Polyline.prototype.readProjection;
@@ -371,7 +371,7 @@ ol.format.Polyline.prototype.writeFeaturesText =
* @param {ol.geom.Geometry} geometry Geometry.
* @param {olx.format.WriteOptions=} opt_options Write options.
* @return {string} Geometry.
* @api
* @api stable
*/
ol.format.Polyline.prototype.writeGeometry;