diff --git a/src/ol/map.js b/src/ol/map.js index 6b1c51fb33..1e4996babe 100644 --- a/src/ol/map.js +++ b/src/ol/map.js @@ -598,22 +598,22 @@ ol.Map.prototype.forEachFeatureAtPixel = * filter function, only layers which are visible and for which this * function returns `true` will be tested for features. By default, all * visible layers will be tested. Feature overlays will always be tested. - * @param {U=} opt_this2 Value to use as `this` when executing `layerFilter`. + * @param {U=} opt_this Value to use as `this` when executing `layerFilter`. * @return {boolean} Is there a feature at the given pixel? * @template U * @api */ ol.Map.prototype.hasFeatureAtPixel = - function(pixel, opt_layerFilter, opt_this2) { + function(pixel, opt_layerFilter, opt_this) { if (goog.isNull(this.frameState_)) { return false; } var coordinate = this.getCoordinateFromPixel(pixel); var layerFilter = goog.isDef(opt_layerFilter) ? opt_layerFilter : goog.functions.TRUE; - var thisArg2 = goog.isDef(opt_this2) ? opt_this2 : null; + var thisArg = goog.isDef(opt_this) ? opt_this : null; return this.renderer_.hasFeatureAtPixel( - coordinate, this.frameState_, layerFilter, thisArg2); + coordinate, this.frameState_, layerFilter, thisArg); };