Merge pull request #3205 from fredj/use-ol.extent.createOrUpdateFromCoordinate

Use ol.extent.createOrUpdateFromCoordinate
This commit is contained in:
Frédéric Junod
2015-02-04 14:55:49 +01:00

View File

@@ -1189,7 +1189,7 @@ ol.render.webgl.ReplayGroup.prototype.forEachFeatureAtCoordinate = function(
// build an extent around the coordinate, so that only features that
// intersect this extent are checked
hitExtent = ol.extent.buffer(
ol.extent.boundingExtent([coordinate]),
ol.extent.createOrUpdateFromCoordinate(coordinate),
resolution * this.renderBuffer_);
}