Bare bones geom package
This commit is contained in:
19
src/ol/geom/multipoint.js
Normal file
19
src/ol/geom/multipoint.js
Normal file
@@ -0,0 +1,19 @@
|
||||
goog.provide('ol.geom.MultiPoint');
|
||||
|
||||
goog.require('ol.geom.Geometry');
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* @constructor
|
||||
* @implements {ol.geom.Geometry}
|
||||
* @param {Array} coordinates Coordinates array.
|
||||
*/
|
||||
ol.geom.MultiPoint = function(coordinates) {
|
||||
|
||||
/**
|
||||
* @type {Array}
|
||||
*/
|
||||
this.coordinates = coordinates;
|
||||
|
||||
};
|
||||
Reference in New Issue
Block a user