Rename transform to applyTransform for geometries

This commit is contained in:
Tim Schaub
2014-05-02 09:21:56 -06:00
parent 7b4c240a5a
commit 4f9968d106
8 changed files with 10 additions and 9 deletions
+1 -1
View File
@@ -187,7 +187,7 @@ ol.Geolocation.prototype.positionChange_ = function(position) {
this.set(ol.GeolocationProperty.SPEED,
goog.isNull(coords.speed) ? undefined : coords.speed);
var geometry = ol.sphere.WGS84.circle(this.position_, coords.accuracy);
geometry.transform(this.transform_);
geometry.applyTransform(this.transform_);
this.set(ol.GeolocationProperty.ACCURACY_GEOMETRY, geometry);
this.dispatchChangeEvent();
};