This commit serves no purpose other than helping minimize a diff

This commit is contained in:
Tim Schaub
2013-12-05 14:44:36 -07:00
parent 2f7fa8f442
commit 9d00b1b993

View File

@@ -9,6 +9,24 @@ goog.require('ol.Extent');
goog.require('ol.TransformFunction'); 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 * @constructor
@@ -72,21 +90,3 @@ ol.geom.GeometryEvent = function(type, target, oldExtent) {
this.oldExtent = oldExtent; this.oldExtent = oldExtent;
}; };
goog.inherits(ol.geom.GeometryEvent, goog.events.Event); 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'
};