Remove opt_this param in ol/extent

This commit is contained in:
Frederic Junod
2019-04-08 13:39:42 +02:00
parent c20bdedcac
commit 187f58c1c3
3 changed files with 8 additions and 16 deletions
+1 -1
View File
@@ -143,7 +143,7 @@ class Circle extends SimpleGeometry {
return true;
}
return forEachCorner(extent, this.intersectsCoordinate, this);
return forEachCorner(extent, this.intersectsCoordinate.bind(this));
}
return false;