Rename _ol_Overlay_ to Overlay

This commit is contained in:
Frederic Junod
2017-12-18 12:41:31 +01:00
parent 8cae7abb3e
commit db69f0ae44
4 changed files with 40 additions and 40 deletions

View File

@@ -1,7 +1,7 @@
import _ol_Feature_ from '../../../src/ol/Feature.js';
import _ol_Map_ from '../../../src/ol/Map.js';
import MapEvent from '../../../src/ol/MapEvent.js';
import _ol_Overlay_ from '../../../src/ol/Overlay.js';
import Overlay from '../../../src/ol/Overlay.js';
import _ol_View_ from '../../../src/ol/View.js';
import Point from '../../../src/ol/geom/Point.js';
import _ol_has_ from '../../../src/ol/has.js';
@@ -610,7 +610,7 @@ describe('ol.Map', function() {
});
it('returns an overlay by id', function() {
overlay = new _ol_Overlay_({
overlay = new Overlay({
id: 'foo',
element: overlay_target,
position: [0, 0]
@@ -620,7 +620,7 @@ describe('ol.Map', function() {
});
it('returns null when no overlay is found', function() {
overlay = new _ol_Overlay_({
overlay = new Overlay({
id: 'foo',
element: overlay_target,
position: [0, 0]
@@ -630,7 +630,7 @@ describe('ol.Map', function() {
});
it('returns null after removing overlay', function() {
overlay = new _ol_Overlay_({
overlay = new Overlay({
id: 'foo',
element: overlay_target,
position: [0, 0]