Remove the ol.geom.RawMultiLineString type

This commit is contained in:
Éric Lemoine
2014-08-21 10:49:31 +02:00
parent d17993794d
commit 95d7598227
2 changed files with 3 additions and 11 deletions

View File

@@ -203,14 +203,6 @@ ol.geom.Geometry.prototype.transform = function(source, destination) {
};
/**
* Array representation of a multilinestring.
* @typedef {Array.<Array.<ol.Coordinate>>}
* @api stable
*/
ol.geom.RawMultiLineString;
/**
* Array representation of a multipolygon.
* @typedef {Array.<Array.<Array.<ol.Coordinate>>>}

View File

@@ -20,7 +20,7 @@ goog.require('ol.geom.flat.simplify');
*
* @constructor
* @extends {ol.geom.SimpleGeometry}
* @param {ol.geom.RawMultiLineString} coordinates Coordinates.
* @param {Array.<Array.<ol.Coordinate>>} coordinates Coordinates.
* @param {ol.geom.GeometryLayout=} opt_layout Layout.
* @api stable
*/
@@ -139,7 +139,7 @@ ol.geom.MultiLineString.prototype.getCoordinateAtM =
/**
* @return {ol.geom.RawMultiLineString} Coordinates.
* @return {Array.<Array.<ol.Coordinate>>} Coordinates.
* @api stable
*/
ol.geom.MultiLineString.prototype.getCoordinates = function() {
@@ -244,7 +244,7 @@ ol.geom.MultiLineString.prototype.getType = function() {
/**
* @param {ol.geom.RawMultiLineString} coordinates Coordinates.
* @param {Array.<Array.<ol.Coordinate>>} coordinates Coordinates.
* @param {ol.geom.GeometryLayout=} opt_layout Layout.
* @api stable
*/