Files
openlayers/src/ol/extent/relationship.js
2016-12-06 14:49:43 -07:00

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
};