Move inflateCoordinates into ol.geom.flat

This commit is contained in:
Tom Payne
2013-11-12 12:22:29 +01:00
parent dc1ad7bb83
commit 16e5f238d2
8 changed files with 80 additions and 80 deletions

View File

@@ -22,7 +22,7 @@ goog.inherits(ol.geom.LineString, ol.geom.Geometry);
* @return {ol.geom.RawLineString} Coordinates.
*/
ol.geom.LineString.prototype.getCoordinates = function() {
return ol.geom.inflateCoordinates(
return ol.geom.flat.inflateCoordinates(
this.flatCoordinates, 0, this.flatCoordinates.length, this.stride);
};