Remove variable for Corner and Relationship

This commit is contained in:
Andreas Hocevar
2017-12-13 09:21:50 +01:00
parent 01f6e90828
commit 7247ccbf38
2 changed files with 2 additions and 6 deletions
+1 -3
View File
@@ -5,11 +5,9 @@
* Extent corner. * Extent corner.
* @enum {string} * @enum {string}
*/ */
var _ol_extent_Corner_ = { export default {
BOTTOM_LEFT: 'bottom-left', BOTTOM_LEFT: 'bottom-left',
BOTTOM_RIGHT: 'bottom-right', BOTTOM_RIGHT: 'bottom-right',
TOP_LEFT: 'top-left', TOP_LEFT: 'top-left',
TOP_RIGHT: 'top-right' TOP_RIGHT: 'top-right'
}; };
export default _ol_extent_Corner_;
+1 -3
View File
@@ -5,7 +5,7 @@
* Relationship to an extent. * Relationship to an extent.
* @enum {number} * @enum {number}
*/ */
var _ol_extent_Relationship_ = { export default {
UNKNOWN: 0, UNKNOWN: 0,
INTERSECTING: 1, INTERSECTING: 1,
ABOVE: 2, ABOVE: 2,
@@ -13,5 +13,3 @@ var _ol_extent_Relationship_ = {
BELOW: 8, BELOW: 8,
LEFT: 16 LEFT: 16
}; };
export default _ol_extent_Relationship_;