Types for rings and mixed collections
This commit is contained in:
@@ -51,8 +51,10 @@ ol.geom.CoordinateArray;
|
|||||||
ol.geom.GeometryType = {
|
ol.geom.GeometryType = {
|
||||||
POINT: 'point',
|
POINT: 'point',
|
||||||
LINESTRING: 'linestring',
|
LINESTRING: 'linestring',
|
||||||
|
LINEARRING: 'linearring',
|
||||||
POLYGON: 'polygon',
|
POLYGON: 'polygon',
|
||||||
MULTIPOINT: 'multipoint',
|
MULTIPOINT: 'multipoint',
|
||||||
MULTILINESTRING: 'multilinestring',
|
MULTILINESTRING: 'multilinestring',
|
||||||
MULTIPOLYGON: 'multipolygon'
|
MULTIPOLYGON: 'multipolygon',
|
||||||
|
GEOMETRYCOLLECTION: 'geometrycollection'
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ goog.provide('ol.geom.GeometryCollection');
|
|||||||
goog.require('goog.asserts');
|
goog.require('goog.asserts');
|
||||||
goog.require('ol.Extent');
|
goog.require('ol.Extent');
|
||||||
goog.require('ol.geom.Geometry');
|
goog.require('ol.geom.Geometry');
|
||||||
|
goog.require('ol.geom.GeometryType');
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -57,3 +58,11 @@ ol.geom.GeometryCollection.prototype.getBounds = function() {
|
|||||||
}
|
}
|
||||||
return this.bounds;
|
return this.bounds;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @inheritDoc
|
||||||
|
*/
|
||||||
|
ol.geom.GeometryCollection.prototype.getType = function() {
|
||||||
|
return ol.geom.GeometryType.GEOMETRYCOLLECTION;
|
||||||
|
};
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
goog.provide('ol.geom.LinearRing');
|
goog.provide('ol.geom.LinearRing');
|
||||||
|
|
||||||
goog.require('goog.asserts');
|
|
||||||
goog.require('goog.vec.Float64Array');
|
|
||||||
goog.require('ol.geom.CoordinateArray');
|
goog.require('ol.geom.CoordinateArray');
|
||||||
|
goog.require('ol.geom.GeometryType');
|
||||||
goog.require('ol.geom.LineString');
|
goog.require('ol.geom.LineString');
|
||||||
|
|
||||||
|
|
||||||
@@ -25,3 +24,11 @@ ol.geom.LinearRing = function(coordinates) {
|
|||||||
|
|
||||||
};
|
};
|
||||||
goog.inherits(ol.geom.LinearRing, ol.geom.LineString);
|
goog.inherits(ol.geom.LinearRing, ol.geom.LineString);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @inheritDoc
|
||||||
|
*/
|
||||||
|
ol.geom.LinearRing.prototype.getType = function() {
|
||||||
|
return ol.geom.GeometryType.GEOMETRYCOLLECTION;
|
||||||
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user