Rename getAllFeatruesInExtent to getFeaturesInExtent

This commit is contained in:
Tim Schaub
2014-03-05 12:31:09 -07:00
parent 333e4a9625
commit 30dc8195ca
2 changed files with 18 additions and 18 deletions

View File

@@ -222,7 +222,7 @@ ol.source.Vector.prototype.getAllFeaturesAtCoordinate = function(coordinate) {
* @return {Array.<ol.Feature>} Features.
* @todo stability experimental
*/
ol.source.Vector.prototype.getAllFeaturesInExtent = function(extent) {
ol.source.Vector.prototype.getFeaturesInExtent = function(extent) {
return this.rBush_.getAllInExtent(extent);
};