Rename getAllFeaturesAtCoordinate to getFeaturesAtCoordinate

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

View File

@@ -208,7 +208,7 @@ ol.source.Vector.prototype.getFeatures = function() {
* @return {Array.<ol.Feature>} Features.
* @todo stability experimental
*/
ol.source.Vector.prototype.getAllFeaturesAtCoordinate = function(coordinate) {
ol.source.Vector.prototype.getFeaturesAtCoordinate = function(coordinate) {
var features = [];
this.forEachFeatureAtCoordinate(coordinate, function(feature) {
features.push(feature);