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
+1 -1
View File
@@ -31,7 +31,7 @@ goog.inherits(ol.geom.MultiLineString, ol.geom.Geometry);
* @return {ol.geom.RawMultiLineString} Coordinates.
*/
ol.geom.MultiLineString.prototype.getCoordinates = function() {
return ol.geom.inflateCoordinatess(
return ol.geom.flat.inflateCoordinatess(
this.flatCoordinates, 0, this.ends_, this.stride);
};