Remove the ol.geom.RawMultiPoint type
This commit is contained in:
@@ -203,14 +203,6 @@ ol.geom.Geometry.prototype.transform = function(source, destination) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Array representation of a multipoint.
|
|
||||||
* @typedef {Array.<ol.Coordinate>}
|
|
||||||
* @api stable
|
|
||||||
*/
|
|
||||||
ol.geom.RawMultiPoint;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Array representation of a multilinestring.
|
* Array representation of a multilinestring.
|
||||||
* @typedef {Array.<Array.<ol.Coordinate>>}
|
* @typedef {Array.<Array.<ol.Coordinate>>}
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ goog.require('ol.math');
|
|||||||
*
|
*
|
||||||
* @constructor
|
* @constructor
|
||||||
* @extends {ol.geom.SimpleGeometry}
|
* @extends {ol.geom.SimpleGeometry}
|
||||||
* @param {ol.geom.RawMultiPoint} 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
|
||||||
*/
|
*/
|
||||||
@@ -84,7 +84,7 @@ ol.geom.MultiPoint.prototype.closestPointXY =
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return {ol.geom.RawMultiPoint} Coordinates.
|
* @return {Array.<ol.Coordinate>} Coordinates.
|
||||||
* @api stable
|
* @api stable
|
||||||
*/
|
*/
|
||||||
ol.geom.MultiPoint.prototype.getCoordinates = function() {
|
ol.geom.MultiPoint.prototype.getCoordinates = function() {
|
||||||
@@ -142,7 +142,7 @@ ol.geom.MultiPoint.prototype.getType = function() {
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {ol.geom.RawMultiPoint} 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