Transformed

This commit is contained in:
Tim Schaub
2017-12-11 16:29:33 -07:00
parent 1cdb6a66f0
commit 7f47883c48
737 changed files with 22216 additions and 21609 deletions
+6 -3
View File
@@ -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_;
+6 -4
View File
@@ -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_;