16 lines
208 B
JavaScript
16 lines
208 B
JavaScript
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
|
|
};
|