Fire change event when an ol.geom.Geometry is transformed

This commit is contained in:
Tom Payne
2013-12-06 21:12:32 +01:00
parent 6c5f1fbcce
commit 1ae13f152d

View File

@@ -252,6 +252,7 @@ ol.geom.Geometry.prototype.transform = function(transformFn) {
if (!goog.isNull(this.flatCoordinates)) {
transformFn(this.flatCoordinates, this.flatCoordinates, this.stride);
}
this.dispatchChangeEvent();
};