Dedicated module for ol.extent.Relationship enum

This commit is contained in:
Tim Schaub
2016-12-04 14:06:30 -07:00
parent 780bb1b30d
commit c0fe3f1e4f
2 changed files with 16 additions and 15 deletions
+15
View File
@@ -0,0 +1,15 @@
goog.provide('ol.extent.Relationship');
/**
* Relationship to an extent.
* @enum {number}
*/
ol.extent.Relationship = {
UNKNOWN: 0,
INTERSECTING: 1,
ABOVE: 2,
RIGHT: 4,
BELOW: 8,
LEFT: 16
};