Check closest point against extent

This commit is contained in:
Tom Payne
2013-12-09 11:31:40 +00:00
parent 66f1826358
commit f4fe0046b2
7 changed files with 30 additions and 1 deletions

View File

@@ -119,7 +119,6 @@ ol.geom.Geometry.prototype.closestPointXY = goog.abstractMethod;
* @return {ol.Coordinate} Closest point.
*/
ol.geom.Geometry.prototype.getClosestPoint = function(point, opt_closestPoint) {
// FIXME check extent
var closestPoint = goog.isDef(opt_closestPoint) ?
opt_closestPoint : [NaN, NaN];
this.closestPointXY(point[0], point[1], closestPoint, Infinity);