20 lines
296 B
JavaScript
20 lines
296 B
JavaScript
goog.provide('ol.geom.LineString');
|
|
|
|
goog.require('ol.geom.Geometry');
|
|
|
|
|
|
|
|
/**
|
|
* @constructor
|
|
* @implements {ol.geom.Geometry}
|
|
* @param {Array} coordinates Coordinates array.
|
|
*/
|
|
ol.geom.LineString = function(coordinates) {
|
|
|
|
/**
|
|
* @type {Array}
|
|
*/
|
|
this.coordinates = coordinates;
|
|
|
|
};
|