Rename _ol_source_TileArcGISRest_ to TileArcGISRest

This commit is contained in:
Tim Schaub
2018-01-08 15:48:40 -07:00
parent f855bc1562
commit 6261cb6997
3 changed files with 29 additions and 29 deletions

View File

@@ -2,7 +2,7 @@ import Map from '../src/ol/Map.js';
import View from '../src/ol/View.js';
import TileLayer from '../src/ol/layer/Tile.js';
import OSM from '../src/ol/source/OSM.js';
import _ol_source_TileArcGISRest_ from '../src/ol/source/TileArcGISRest.js';
import TileArcGISRest from '../src/ol/source/TileArcGISRest.js';
var url = 'https://sampleserver1.arcgisonline.com/ArcGIS/rest/services/' +
'Specialty/ESRI_StateCityHighway_USA/MapServer';
@@ -13,7 +13,7 @@ var layers = [
}),
new TileLayer({
extent: [-13884991, 2870341, -7455066, 6338219],
source: new _ol_source_TileArcGISRest_({
source: new TileArcGISRest({
url: url
})
})