Rename ol.OverlayPositioning to ol.Overlay.Positioning

This commit is contained in:
Frederic Junod
2016-08-29 12:22:40 +02:00
committed by Tim Schaub
parent 556e443705
commit 7df8b2bb2b
4 changed files with 40 additions and 41 deletions

View File

@@ -8,7 +8,6 @@ goog.require('ol.MapProperty');
goog.require('ol.Object');
goog.require('ol.ObjectEventType');
goog.require('ol.Overlay');
goog.require('ol.OverlayPositioning');
goog.require('ol.View');
goog.require('ol.control.Control');
goog.require('ol.coordinate');
@@ -124,7 +123,7 @@ ol.control.OverviewMap = function(opt_options) {
*/
this.boxOverlay_ = new ol.Overlay({
position: [0, 0],
positioning: ol.OverlayPositioning.BOTTOM_LEFT,
positioning: ol.Overlay.Positioning.BOTTOM_LEFT,
element: box
});
this.ovmap_.addOverlay(this.boxOverlay_);