Use blocked scoped variables

In addition to using const and let, this also upgrades our linter config and removes lint (mostly whitespace).
This commit is contained in:
Tim Schaub
2018-01-11 23:32:36 -07:00
parent 0bf2b04dee
commit ad62739a6e
684 changed files with 18120 additions and 18184 deletions
+7 -7
View File
@@ -6,16 +6,16 @@ import TileLayer from '../src/ol/layer/Tile.js';
import WMTS from '../src/ol/source/WMTS.js';
var capabilitiesUrl = 'https://www.basemap.at/wmts/1.0.0/WMTSCapabilities.xml';
const capabilitiesUrl = 'https://www.basemap.at/wmts/1.0.0/WMTSCapabilities.xml';
// HiDPI support:
// * Use 'bmaphidpi' layer (pixel ratio 2) for device pixel ratio > 1
// * Use 'geolandbasemap' layer (pixel ratio 1) for device pixel ratio == 1
var hiDPI = _ol_has_.DEVICE_PIXEL_RATIO > 1;
var layer = hiDPI ? 'bmaphidpi' : 'geolandbasemap';
var tilePixelRatio = hiDPI ? 2 : 1;
const hiDPI = _ol_has_.DEVICE_PIXEL_RATIO > 1;
const layer = hiDPI ? 'bmaphidpi' : 'geolandbasemap';
const tilePixelRatio = hiDPI ? 2 : 1;
var map = new Map({
const map = new Map({
target: 'map',
view: new View({
center: [1823849, 6143760],
@@ -26,8 +26,8 @@ var map = new Map({
fetch(capabilitiesUrl).then(function(response) {
return response.text();
}).then(function(text) {
var result = new _ol_format_WMTSCapabilities_().read(text);
var options = WMTS.optionsFromCapabilities(result, {
const result = new _ol_format_WMTSCapabilities_().read(text);
const options = WMTS.optionsFromCapabilities(result, {
layer: layer,
matrixSet: 'google3857',
style: 'normal'