Better descriptions of options

This commit is contained in:
Andreas Hocevar
2014-07-28 20:01:54 +02:00
parent 464eb3ccf5
commit 68d572e062
+6 -5
View File
@@ -1152,16 +1152,16 @@ olx.format.ReadOptions;
/** /**
* Projection of the data we are reading. Default is the projection derived from * Projection of the data we are reading. If not provided, the projection will
* the data. * be derived from the data (where possible).
* @type {ol.proj.ProjectionLike|undefined} * @type {ol.proj.ProjectionLike|undefined}
*/ */
olx.format.ReadOptions.prototype.dataProjection; olx.format.ReadOptions.prototype.dataProjection;
/** /**
* Projection of the feature geometries created by the format reader. Default * Projection of the feature geometries created by the format reader. if not
* is the `dataProjection`. * provided, features will be returned in the `dataProjection`.
* @type {ol.proj.ProjectionLike|undefined} * @type {ol.proj.ProjectionLike|undefined}
*/ */
olx.format.ReadOptions.prototype.featureProjection; olx.format.ReadOptions.prototype.featureProjection;
@@ -1175,7 +1175,8 @@ olx.format.WriteOptions;
/** /**
* Projection of the data we are writing. Default is the `featureProjection`. * Projection of the data we are writing. If not provided, features will be
* written in the `featureProjection`.
* @type {ol.proj.ProjectionLike|undefined} * @type {ol.proj.ProjectionLike|undefined}
*/ */
olx.format.WriteOptions.prototype.dataProjection; olx.format.WriteOptions.prototype.dataProjection;