Remove the ol.geom.RawPoint type

This commit is contained in:
Éric Lemoine
2014-08-21 10:38:45 +02:00
parent feba61af25
commit 72bcb2db80
3 changed files with 8 additions and 16 deletions
+1 -9
View File
@@ -203,14 +203,6 @@ ol.geom.Geometry.prototype.transform = function(source, destination) {
};
/**
* Array representation of a point. Example: `[16, 48]`.
* @typedef {ol.Coordinate}
* @api stable
*/
ol.geom.RawPoint;
/**
* Array representation of a linestring.
* @typedef {Array.<ol.Coordinate>}
@@ -237,7 +229,7 @@ ol.geom.RawPolygon;
/**
* Array representation of a multipoint.
* @typedef {Array.<ol.geom.RawPoint>}
* @typedef {Array.<ol.Coordinate>}
* @api stable
*/
ol.geom.RawMultiPoint;