Merge pull request #1537 from twpayne/vector-api-remove-read-features-async

[vector-api] Remove ol.format.Format#readFeaturesAsync
This commit is contained in:
Tom Payne
2014-01-15 06:24:39 -08:00
4 changed files with 0 additions and 13 deletions

View File

@@ -49,16 +49,6 @@ ol.format.Format.prototype.readFeature = goog.abstractMethod;
ol.format.Format.prototype.readFeatures = goog.abstractMethod;
/**
* @param {Document|Node|Object|string} source Source.
* @param {function(this: S, ol.Feature, (Document|Node|Object|undefined)): T}
* callback Callback.
* @param {S=} opt_obj Scope.
* @template S,T
*/
ol.format.Format.prototype.readFeaturesAsync = goog.abstractMethod;
/**
* @param {Document|Node|Object|string} source Source.
* @return {ol.geom.Geometry} Geometry.

View File

@@ -1,6 +1,5 @@
@exportProperty ol.format.JSON.prototype.readFeature
@exportProperty ol.format.JSON.prototype.readFeatures
@exportProperty ol.format.JSON.prototype.readFeaturesAsync
@exportProperty ol.format.JSON.prototype.readGeometry
@exportProperty ol.format.JSON.prototype.readProjection
@exportProperty ol.format.JSON.prototype.writeFeature

View File

@@ -1,6 +1,5 @@
@exportProperty ol.format.Text.prototype.readFeature
@exportProperty ol.format.Text.prototype.readFeatures
@exportProperty ol.format.Text.prototype.readFeaturesAsync
@exportProperty ol.format.Text.prototype.readGeometry
@exportProperty ol.format.Text.prototype.readProjection
@exportProperty ol.format.Text.prototype.writeFeature

View File

@@ -1,6 +1,5 @@
@exportProperty ol.format.XML.prototype.readFeature
@exportProperty ol.format.XML.prototype.readFeatures
@exportProperty ol.format.XML.prototype.readFeaturesAsync
@exportProperty ol.format.XML.prototype.readGeometry
@exportProperty ol.format.XML.prototype.readProjection
@exportProperty ol.format.XML.prototype.writeFeature