All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
16 lines
251 B
JavaScript
16 lines
251 B
JavaScript
/**
|
|
* @module ol/extent/Relationship
|
|
*/
|
|
/**
|
|
* Relationship to an extent.
|
|
* @enum {number}
|
|
*/
|
|
export default {
|
|
UNKNOWN: 0,
|
|
INTERSECTING: 1,
|
|
ABOVE: 2,
|
|
RIGHT: 4,
|
|
BELOW: 8,
|
|
LEFT: 16,
|
|
};
|
|
//# sourceMappingURL=Relationship.js.map
|