Skip to content

Commit

Permalink
add commentary
Browse files Browse the repository at this point in the history
  • Loading branch information
peterqliu committed Aug 21, 2015
1 parent 430a659 commit 0eb57cf
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lib/batch.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,14 @@ module.exports = function(config) {
});
};

/**
* Retrieve a set of GeoJSON features
* @static
* @memberof cardboard.batch
* @param {string[]} ids - an array of feature ids to remove
* @param {string} dataset - the name of the dataset that these features belongs to
* @param {function} callback - the callback function to handle the response
*/
batch.get = function(ids, dataset, callback) {
var results= []
ids.forEach(function(id){
Expand Down

0 comments on commit 0eb57cf

Please sign in to comment.