From 9d00b1b9931c113f594582728a91b32f245d948f Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Thu, 5 Dec 2013 14:44:36 -0700 Subject: [PATCH] This commit serves no purpose other than helping minimize a diff --- src/ol/geom/geometry.js | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/src/ol/geom/geometry.js b/src/ol/geom/geometry.js index efcdf34911..bafdcff6db 100644 --- a/src/ol/geom/geometry.js +++ b/src/ol/geom/geometry.js @@ -9,6 +9,24 @@ goog.require('ol.Extent'); goog.require('ol.TransformFunction'); +/** + * Geometry types. + * + * @enum {string} + * @todo stability experimental + */ +ol.geom.GeometryType = { + POINT: 'Point', + LINE_STRING: 'LineString', + LINEAR_RING: 'LinearRing', + POLYGON: 'Polygon', + MULTI_POINT: 'MultiPoint', + MULTI_LINE_STRING: 'MultiLineString', + MULTI_POLYGON: 'MultiPolygon', + GEOMETRY_COLLECTION: 'GeometryCollection' +}; + + /** * @constructor @@ -72,21 +90,3 @@ ol.geom.GeometryEvent = function(type, target, oldExtent) { this.oldExtent = oldExtent; }; goog.inherits(ol.geom.GeometryEvent, goog.events.Event); - - -/** - * Geometry types. - * - * @enum {string} - * @todo stability experimental - */ -ol.geom.GeometryType = { - POINT: 'Point', - LINE_STRING: 'LineString', - LINEAR_RING: 'LinearRing', - POLYGON: 'Polygon', - MULTI_POINT: 'MultiPoint', - MULTI_LINE_STRING: 'MultiLineString', - MULTI_POLYGON: 'MultiPolygon', - GEOMETRY_COLLECTION: 'GeometryCollection' -};