Fix missing API docs

This commit is contained in:
Peter Robins
2014-08-11 09:31:07 +00:00
parent 9db936fe87
commit d9976ca207
6 changed files with 17 additions and 9 deletions
+2
View File
@@ -11,7 +11,9 @@ goog.require('ol.proj');
/**
* IGC altitude/z. One of 'barometric', 'gps', 'none'.
* @enum {string}
* @api
*/
ol.format.IGCZ = {
BAROMETRIC: 'barometric',
+6 -2
View File
@@ -65,17 +65,21 @@ ol.format.WFS.xmlns = 'http://www.w3.org/2000/xmlns/';
/**
* Number of features; bounds/extent.
* @typedef {{numberOfFeatures: number,
* bounds: ol.Extent}}
* @api
*/
ol.format.WFS.FeatureCollectionMetadata;
/**
* Total deleted; total inserted; total updated; array of insert ids.
* @typedef {{totalDeleted: number,
* totalInserted: number,
totalUpdated: number,
insertIds: Array.<string>}}
* totalUpdated: number,
* insertIds: Array.<string>}}
* @api
*/
ol.format.WFS.TransactionResponse;