Rename _ol_source_OSM_ to OSM

This commit is contained in:
Tim Schaub
2018-01-08 15:46:23 -07:00
parent c7b0cf51ad
commit 5f62d2ecfe
83 changed files with 174 additions and 174 deletions

View File

@@ -2,7 +2,7 @@ import Map from '../src/ol/Map.js';
import View from '../src/ol/View.js';
import ZoomSlider from '../src/ol/control/ZoomSlider.js';
import TileLayer from '../src/ol/layer/Tile.js';
import _ol_source_OSM_ from '../src/ol/source/OSM.js';
import OSM from '../src/ol/source/OSM.js';
/**
@@ -14,7 +14,7 @@ import _ol_source_OSM_ from '../src/ol/source/OSM.js';
var createMap = function(divId) {
var source, layer, map, zoomslider;
source = new _ol_source_OSM_();
source = new OSM();
layer = new TileLayer({
source: source
});