Rename ol.structs.RBush#getAllInExtent to getInExtent

This commit is contained in:
Tom Payne
2014-03-06 14:30:56 +01:00
parent 6fb98851d9
commit e5ee44f8ad
4 changed files with 21 additions and 21 deletions

View File

@@ -223,7 +223,7 @@ ol.source.Vector.prototype.getFeaturesAtCoordinate = function(coordinate) {
* @todo stability experimental
*/
ol.source.Vector.prototype.getFeaturesInExtent = function(extent) {
return this.rBush_.getAllInExtent(extent);
return this.rBush_.getInExtent(extent);
};