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

@@ -4,7 +4,7 @@
@exportProperty ol.source.Vector.prototype.forEachFeature
@exportProperty ol.source.Vector.prototype.forEachFeatureInExtent
@exportProperty ol.source.Vector.prototype.getFeatures
@exportProperty ol.source.Vector.prototype.getAllFeaturesAtCoordinate
@exportProperty ol.source.Vector.prototype.getFeaturesAtCoordinate
@exportProperty ol.source.Vector.prototype.getClosestFeatureToCoordinate
@exportProperty ol.source.Vector.prototype.getExtent
@exportProperty ol.source.Vector.prototype.removeFeature

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);