Types for rings and mixed collections

This commit is contained in:
Tim Schaub
2013-01-21 17:56:12 -07:00
parent 6ef2184c83
commit 89bc69ccc1
3 changed files with 21 additions and 3 deletions

View File

@@ -3,6 +3,7 @@ goog.provide('ol.geom.GeometryCollection');
goog.require('goog.asserts');
goog.require('ol.Extent');
goog.require('ol.geom.Geometry');
goog.require('ol.geom.GeometryType');
@@ -57,3 +58,11 @@ ol.geom.GeometryCollection.prototype.getBounds = function() {
}
return this.bounds;
};
/**
* @inheritDoc
*/
ol.geom.GeometryCollection.prototype.getType = function() {
return ol.geom.GeometryType.GEOMETRYCOLLECTION;
};