Remove the ol.geom.RawLineString type
This commit is contained in:
@@ -203,14 +203,6 @@ ol.geom.Geometry.prototype.transform = function(source, destination) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Array representation of a linestring.
|
|
||||||
* @typedef {Array.<ol.Coordinate>}
|
|
||||||
* @api stable
|
|
||||||
*/
|
|
||||||
ol.geom.RawLineString;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Array representation of a linear ring.
|
* Array representation of a linear ring.
|
||||||
* @typedef {Array.<ol.Coordinate>}
|
* @typedef {Array.<ol.Coordinate>}
|
||||||
@@ -237,7 +229,7 @@ ol.geom.RawMultiPoint;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Array representation of a multilinestring.
|
* Array representation of a multilinestring.
|
||||||
* @typedef {Array.<ol.geom.RawLineString>}
|
* @typedef {Array.<Array.<ol.Coordinate>>}
|
||||||
* @api stable
|
* @api stable
|
||||||
*/
|
*/
|
||||||
ol.geom.RawMultiLineString;
|
ol.geom.RawMultiLineString;
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ goog.require('ol.geom.flat.simplify');
|
|||||||
*
|
*
|
||||||
* @constructor
|
* @constructor
|
||||||
* @extends {ol.geom.SimpleGeometry}
|
* @extends {ol.geom.SimpleGeometry}
|
||||||
* @param {ol.geom.RawLineString} coordinates Coordinates.
|
* @param {Array.<ol.Coordinate>} coordinates Coordinates.
|
||||||
* @param {ol.geom.GeometryLayout=} opt_layout Layout.
|
* @param {ol.geom.GeometryLayout=} opt_layout Layout.
|
||||||
* @api stable
|
* @api stable
|
||||||
*/
|
*/
|
||||||
@@ -131,7 +131,7 @@ ol.geom.LineString.prototype.getCoordinateAtM = function(m, opt_extrapolate) {
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return {ol.geom.RawLineString} Coordinates.
|
* @return {Array.<ol.Coordinate>} Coordinates.
|
||||||
* @api stable
|
* @api stable
|
||||||
*/
|
*/
|
||||||
ol.geom.LineString.prototype.getCoordinates = function() {
|
ol.geom.LineString.prototype.getCoordinates = function() {
|
||||||
@@ -190,7 +190,7 @@ ol.geom.LineString.prototype.getType = function() {
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {ol.geom.RawLineString} coordinates Coordinates.
|
* @param {Array.<ol.Coordinate>} coordinates Coordinates.
|
||||||
* @param {ol.geom.GeometryLayout=} opt_layout Layout.
|
* @param {ol.geom.GeometryLayout=} opt_layout Layout.
|
||||||
* @api stable
|
* @api stable
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user