Files
openlayers/src/ol/geom/linestring.js
2013-01-07 01:34:33 -05:00

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;
};