Merge pull request #2509 from probins/apimismatch

Fix missing API docs
This commit is contained in:
Éric Lemoine
2014-08-20 15:40:25 +02:00
6 changed files with 17 additions and 9 deletions

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',

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;