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

View File

@@ -1,23 +1,9 @@
goog.provide('ol.extent');
goog.provide('ol.extent.Relationship');
goog.require('ol');
goog.require('ol.asserts');
goog.require('ol.extent.Corner');
/**
* Relationship to an extent.
* @enum {number}
*/
ol.extent.Relationship = {
UNKNOWN: 0,
INTERSECTING: 1,
ABOVE: 2,
RIGHT: 4,
BELOW: 8,
LEFT: 16
};
goog.require('ol.extent.Relationship');
/**