Transformed
This commit is contained in:
@@ -1,12 +1,15 @@
|
||||
goog.provide('ol.extent.Corner');
|
||||
|
||||
/**
|
||||
* @module ol/extent/Corner
|
||||
*/
|
||||
/**
|
||||
* Extent corner.
|
||||
* @enum {string}
|
||||
*/
|
||||
ol.extent.Corner = {
|
||||
var _ol_extent_Corner_ = {
|
||||
BOTTOM_LEFT: 'bottom-left',
|
||||
BOTTOM_RIGHT: 'bottom-right',
|
||||
TOP_LEFT: 'top-left',
|
||||
TOP_RIGHT: 'top-right'
|
||||
};
|
||||
|
||||
export default _ol_extent_Corner_;
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
goog.provide('ol.extent.Relationship');
|
||||
|
||||
|
||||
/**
|
||||
* @module ol/extent/Relationship
|
||||
*/
|
||||
/**
|
||||
* Relationship to an extent.
|
||||
* @enum {number}
|
||||
*/
|
||||
ol.extent.Relationship = {
|
||||
var _ol_extent_Relationship_ = {
|
||||
UNKNOWN: 0,
|
||||
INTERSECTING: 1,
|
||||
ABOVE: 2,
|
||||
@@ -13,3 +13,5 @@ ol.extent.Relationship = {
|
||||
BELOW: 8,
|
||||
LEFT: 16
|
||||
};
|
||||
|
||||
export default _ol_extent_Relationship_;
|
||||
|
||||
Reference in New Issue
Block a user