Merge pull request #1077 from ThomasG77/setPositioning

Export ol.Overlay#setPositioning
This commit is contained in:
Éric Lemoine
2013-10-16 02:50:38 -07:00

View File

@@ -280,11 +280,16 @@ goog.exportProperty(
/**
* Set the positioning for this overlay.
* @param {ol.OverlayPositioning|undefined} positioning Positioning.
*/
ol.Overlay.prototype.setPositioning = function(positioning) {
this.set(ol.OverlayProperty.POSITIONING, positioning);
};
goog.exportProperty(
ol.Overlay.prototype,
'setPositioning',
ol.Overlay.prototype.setPositioning);
/**