Make code prettier
This updates ESLint and our shared eslint-config-openlayers to use Prettier. Most formatting changes were automatically applied with this:
npm run lint -- --fix
A few manual changes were required:
* In `examples/offscreen-canvas.js`, the `//eslint-disable-line` comment needed to be moved to the appropriate line to disable the error about the `'worker-loader!./offscreen-canvas.worker.js'` import.
* In `examples/webpack/exapmle-builder.js`, spaces could not be added after a couple `function`s for some reason. While editing this, I reworked `ExampleBuilder` to be a class.
* In `src/ol/format/WMSGetFeatureInfo.js`, the `// @ts-ignore` comment needed to be moved down one line so it applied to the `parsersNS` argument.
This commit is contained in:
@@ -1,44 +1,63 @@
|
||||
import Map from '../src/ol/Map.js';
|
||||
import View from '../src/ol/View.js';
|
||||
import {getWidth, getCenter} from '../src/ol/extent.js';
|
||||
import WMTSCapabilities from '../src/ol/format/WMTSCapabilities.js';
|
||||
import TileGrid from '../src/ol/tilegrid/TileGrid.js';
|
||||
import TileLayer from '../src/ol/layer/Tile.js';
|
||||
import View from '../src/ol/View.js';
|
||||
import WMTS, {optionsFromCapabilities} from '../src/ol/source/WMTS.js';
|
||||
import WMTSCapabilities from '../src/ol/format/WMTSCapabilities.js';
|
||||
import proj4 from 'proj4';
|
||||
import {OSM, TileImage, TileWMS, XYZ} from '../src/ol/source.js';
|
||||
import {getCenter, getWidth} from '../src/ol/extent.js';
|
||||
import {get as getProjection} from '../src/ol/proj.js';
|
||||
import {register} from '../src/ol/proj/proj4.js';
|
||||
import {OSM, TileImage, TileWMS, XYZ} from '../src/ol/source.js';
|
||||
import WMTS, {optionsFromCapabilities} from '../src/ol/source/WMTS.js';
|
||||
import TileGrid from '../src/ol/tilegrid/TileGrid.js';
|
||||
import proj4 from 'proj4';
|
||||
|
||||
|
||||
proj4.defs('EPSG:27700', '+proj=tmerc +lat_0=49 +lon_0=-2 +k=0.9996012717 ' +
|
||||
proj4.defs(
|
||||
'EPSG:27700',
|
||||
'+proj=tmerc +lat_0=49 +lon_0=-2 +k=0.9996012717 ' +
|
||||
'+x_0=400000 +y_0=-100000 +ellps=airy ' +
|
||||
'+towgs84=446.448,-125.157,542.06,0.15,0.247,0.842,-20.489 ' +
|
||||
'+units=m +no_defs');
|
||||
proj4.defs('EPSG:23032', '+proj=utm +zone=32 +ellps=intl ' +
|
||||
'+towgs84=-87,-98,-121,0,0,0,0 +units=m +no_defs');
|
||||
proj4.defs('EPSG:5479', '+proj=lcc +lat_1=-76.66666666666667 +lat_2=' +
|
||||
'+units=m +no_defs'
|
||||
);
|
||||
proj4.defs(
|
||||
'EPSG:23032',
|
||||
'+proj=utm +zone=32 +ellps=intl ' +
|
||||
'+towgs84=-87,-98,-121,0,0,0,0 +units=m +no_defs'
|
||||
);
|
||||
proj4.defs(
|
||||
'EPSG:5479',
|
||||
'+proj=lcc +lat_1=-76.66666666666667 +lat_2=' +
|
||||
'-79.33333333333333 +lat_0=-78 +lon_0=163 +x_0=7000000 +y_0=5000000 ' +
|
||||
'+ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs');
|
||||
proj4.defs('EPSG:21781', '+proj=somerc +lat_0=46.95240555555556 ' +
|
||||
'+ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs'
|
||||
);
|
||||
proj4.defs(
|
||||
'EPSG:21781',
|
||||
'+proj=somerc +lat_0=46.95240555555556 ' +
|
||||
'+lon_0=7.439583333333333 +k_0=1 +x_0=600000 +y_0=200000 +ellps=bessel ' +
|
||||
'+towgs84=674.4,15.1,405.3,0,0,0,0 +units=m +no_defs');
|
||||
proj4.defs('EPSG:3413', '+proj=stere +lat_0=90 +lat_ts=70 +lon_0=-45 +k=1 ' +
|
||||
'+x_0=0 +y_0=0 +datum=WGS84 +units=m +no_defs');
|
||||
proj4.defs('EPSG:2163', '+proj=laea +lat_0=45 +lon_0=-100 +x_0=0 +y_0=0 ' +
|
||||
'+a=6370997 +b=6370997 +units=m +no_defs');
|
||||
proj4.defs('ESRI:54009', '+proj=moll +lon_0=0 +x_0=0 +y_0=0 +datum=WGS84 ' +
|
||||
'+units=m +no_defs');
|
||||
'+towgs84=674.4,15.1,405.3,0,0,0,0 +units=m +no_defs'
|
||||
);
|
||||
proj4.defs(
|
||||
'EPSG:3413',
|
||||
'+proj=stere +lat_0=90 +lat_ts=70 +lon_0=-45 +k=1 ' +
|
||||
'+x_0=0 +y_0=0 +datum=WGS84 +units=m +no_defs'
|
||||
);
|
||||
proj4.defs(
|
||||
'EPSG:2163',
|
||||
'+proj=laea +lat_0=45 +lon_0=-100 +x_0=0 +y_0=0 ' +
|
||||
'+a=6370997 +b=6370997 +units=m +no_defs'
|
||||
);
|
||||
proj4.defs(
|
||||
'ESRI:54009',
|
||||
'+proj=moll +lon_0=0 +x_0=0 +y_0=0 +datum=WGS84 ' + '+units=m +no_defs'
|
||||
);
|
||||
register(proj4);
|
||||
|
||||
const proj27700 = getProjection('EPSG:27700');
|
||||
proj27700.setExtent([0, 0, 700000, 1300000]);
|
||||
|
||||
const proj23032 = getProjection('EPSG:23032');
|
||||
proj23032.setExtent([-1206118.71, 4021309.92, 1295389.00, 8051813.28]);
|
||||
proj23032.setExtent([-1206118.71, 4021309.92, 1295389.0, 8051813.28]);
|
||||
|
||||
const proj5479 = getProjection('EPSG:5479');
|
||||
proj5479.setExtent([6825737.53, 4189159.80, 9633741.96, 5782472.71]);
|
||||
proj5479.setExtent([6825737.53, 4189159.8, 9633741.96, 5782472.71]);
|
||||
|
||||
const proj21781 = getProjection('EPSG:21781');
|
||||
proj21781.setExtent([485071.54, 75346.36, 828515.78, 299941.84]);
|
||||
@@ -47,16 +66,15 @@ const proj3413 = getProjection('EPSG:3413');
|
||||
proj3413.setExtent([-4194304, -4194304, 4194304, 4194304]);
|
||||
|
||||
const proj2163 = getProjection('EPSG:2163');
|
||||
proj2163.setExtent([-8040784.5135, -2577524.9210, 3668901.4484, 4785105.1096]);
|
||||
proj2163.setExtent([-8040784.5135, -2577524.921, 3668901.4484, 4785105.1096]);
|
||||
|
||||
const proj54009 = getProjection('ESRI:54009');
|
||||
proj54009.setExtent([-18e6, -9e6, 18e6, 9e6]);
|
||||
|
||||
|
||||
const layers = {};
|
||||
|
||||
layers['osm'] = new TileLayer({
|
||||
source: new OSM()
|
||||
source: new OSM(),
|
||||
});
|
||||
|
||||
layers['wms4326'] = new TileLayer({
|
||||
@@ -65,60 +83,68 @@ layers['wms4326'] = new TileLayer({
|
||||
crossOrigin: '',
|
||||
params: {
|
||||
'LAYERS': 'ne:NE1_HR_LC_SR_W_DR',
|
||||
'TILED': true
|
||||
'TILED': true,
|
||||
},
|
||||
projection: 'EPSG:4326'
|
||||
})
|
||||
projection: 'EPSG:4326',
|
||||
}),
|
||||
});
|
||||
|
||||
layers['wms21781'] = new TileLayer({
|
||||
source: new TileWMS({
|
||||
attributions: '© <a href="http://www.geo.admin.ch/internet/geoportal/' +
|
||||
attributions:
|
||||
'© <a href="http://www.geo.admin.ch/internet/geoportal/' +
|
||||
'en/home.html">Pixelmap 1:1000000 / geo.admin.ch</a>',
|
||||
crossOrigin: 'anonymous',
|
||||
params: {
|
||||
'LAYERS': 'ch.swisstopo.pixelkarte-farbe-pk1000.noscale',
|
||||
'FORMAT': 'image/jpeg'
|
||||
'FORMAT': 'image/jpeg',
|
||||
},
|
||||
url: 'https://wms.geo.admin.ch/',
|
||||
projection: 'EPSG:21781'
|
||||
})
|
||||
projection: 'EPSG:21781',
|
||||
}),
|
||||
});
|
||||
|
||||
const parser = new WMTSCapabilities();
|
||||
|
||||
layers['wmts3413'] = new TileLayer();
|
||||
const urlA = 'https://map1.vis.earthdata.nasa.gov/wmts-arctic/' +
|
||||
'wmts.cgi?SERVICE=WMTS&request=GetCapabilities';
|
||||
fetch(urlA).then(function(response) {
|
||||
return response.text();
|
||||
}).then(function(text) {
|
||||
const result = parser.read(text);
|
||||
const options = optionsFromCapabilities(result, {
|
||||
layer: 'OSM_Land_Mask',
|
||||
matrixSet: 'EPSG3413_250m'
|
||||
const urlA =
|
||||
'https://map1.vis.earthdata.nasa.gov/wmts-arctic/' +
|
||||
'wmts.cgi?SERVICE=WMTS&request=GetCapabilities';
|
||||
fetch(urlA)
|
||||
.then(function (response) {
|
||||
return response.text();
|
||||
})
|
||||
.then(function (text) {
|
||||
const result = parser.read(text);
|
||||
const options = optionsFromCapabilities(result, {
|
||||
layer: 'OSM_Land_Mask',
|
||||
matrixSet: 'EPSG3413_250m',
|
||||
});
|
||||
options.crossOrigin = '';
|
||||
options.projection = 'EPSG:3413';
|
||||
options.wrapX = false;
|
||||
layers['wmts3413'].setSource(new WMTS(options));
|
||||
});
|
||||
options.crossOrigin = '';
|
||||
options.projection = 'EPSG:3413';
|
||||
options.wrapX = false;
|
||||
layers['wmts3413'].setSource(new WMTS(options));
|
||||
});
|
||||
|
||||
layers['bng'] = new TileLayer();
|
||||
const urlB = 'https://tiles.arcgis.com/tiles/qHLhLQrcvEnxjtPr/arcgis/rest/services/OS_Open_Raster/MapServer/WMTS';
|
||||
fetch(urlB).then(function(response) {
|
||||
return response.text();
|
||||
}).then(function(text) {
|
||||
const result = parser.read(text);
|
||||
const options = optionsFromCapabilities(result, {
|
||||
layer: 'OS_Open_Raster'
|
||||
const urlB =
|
||||
'https://tiles.arcgis.com/tiles/qHLhLQrcvEnxjtPr/arcgis/rest/services/OS_Open_Raster/MapServer/WMTS';
|
||||
fetch(urlB)
|
||||
.then(function (response) {
|
||||
return response.text();
|
||||
})
|
||||
.then(function (text) {
|
||||
const result = parser.read(text);
|
||||
const options = optionsFromCapabilities(result, {
|
||||
layer: 'OS_Open_Raster',
|
||||
});
|
||||
options.attributions =
|
||||
'Contains OS data © Crown Copyright and database right 2019';
|
||||
options.crossOrigin = '';
|
||||
options.projection = 'EPSG:27700';
|
||||
options.wrapX = false;
|
||||
layers['bng'].setSource(new WMTS(options));
|
||||
});
|
||||
options.attributions = 'Contains OS data © Crown Copyright and database right 2019';
|
||||
options.crossOrigin = '';
|
||||
options.projection = 'EPSG:27700';
|
||||
options.wrapX = false;
|
||||
layers['bng'].setSource(new WMTS(options));
|
||||
});
|
||||
|
||||
layers['grandcanyon'] = new TileLayer({
|
||||
source: new XYZ({
|
||||
@@ -126,13 +152,13 @@ layers['grandcanyon'] = new TileLayer({
|
||||
crossOrigin: '',
|
||||
tilePixelRatio: 2,
|
||||
maxZoom: 15,
|
||||
attributions: 'Tiles © USGS, rendered with ' +
|
||||
'<a href="http://www.maptiler.com/">MapTiler</a>'
|
||||
})
|
||||
attributions:
|
||||
'Tiles © USGS, rendered with ' +
|
||||
'<a href="http://www.maptiler.com/">MapTiler</a>',
|
||||
}),
|
||||
});
|
||||
|
||||
const startResolution =
|
||||
getWidth(getProjection('EPSG:3857').getExtent()) / 256;
|
||||
const startResolution = getWidth(getProjection('EPSG:3857').getExtent()) / 256;
|
||||
const resolutions = new Array(22);
|
||||
for (let i = 0, ii = resolutions.length; i < ii; ++i) {
|
||||
resolutions[i] = startResolution / Math.pow(2, i);
|
||||
@@ -147,27 +173,22 @@ layers['states'] = new TileLayer({
|
||||
tileGrid: new TileGrid({
|
||||
extent: [-13884991, 2870341, -7455066, 6338219],
|
||||
resolutions: resolutions,
|
||||
tileSize: [512, 256]
|
||||
tileSize: [512, 256],
|
||||
}),
|
||||
projection: 'EPSG:3857'
|
||||
})
|
||||
projection: 'EPSG:3857',
|
||||
}),
|
||||
});
|
||||
|
||||
|
||||
const map = new Map({
|
||||
layers: [
|
||||
layers['osm'],
|
||||
layers['bng']
|
||||
],
|
||||
layers: [layers['osm'], layers['bng']],
|
||||
target: 'map',
|
||||
view: new View({
|
||||
projection: 'EPSG:3857',
|
||||
center: [0, 0],
|
||||
zoom: 2
|
||||
})
|
||||
zoom: 2,
|
||||
}),
|
||||
});
|
||||
|
||||
|
||||
const baseLayerSelect = document.getElementById('base-layer');
|
||||
const overlayLayerSelect = document.getElementById('overlay-layer');
|
||||
const viewProjSelect = document.getElementById('view-projection');
|
||||
@@ -181,7 +202,7 @@ function updateViewProjection() {
|
||||
projection: newProj,
|
||||
center: getCenter(newProjExtent || [0, 0, 0, 0]),
|
||||
zoom: 0,
|
||||
extent: newProjExtent || undefined
|
||||
extent: newProjExtent || undefined,
|
||||
});
|
||||
map.setView(newView);
|
||||
|
||||
@@ -193,17 +214,16 @@ function updateViewProjection() {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Handle change event.
|
||||
*/
|
||||
viewProjSelect.onchange = function() {
|
||||
viewProjSelect.onchange = function () {
|
||||
updateViewProjection();
|
||||
};
|
||||
|
||||
updateViewProjection();
|
||||
|
||||
const updateRenderEdgesOnLayer = function(layer) {
|
||||
const updateRenderEdgesOnLayer = function (layer) {
|
||||
if (layer instanceof TileLayer) {
|
||||
const source = layer.getSource();
|
||||
if (source instanceof TileImage) {
|
||||
@@ -212,11 +232,10 @@ const updateRenderEdgesOnLayer = function(layer) {
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* Handle change event.
|
||||
*/
|
||||
baseLayerSelect.onchange = function() {
|
||||
baseLayerSelect.onchange = function () {
|
||||
const layer = layers[baseLayerSelect.value];
|
||||
if (layer) {
|
||||
layer.setOpacity(1);
|
||||
@@ -225,11 +244,10 @@ baseLayerSelect.onchange = function() {
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* Handle change event.
|
||||
*/
|
||||
overlayLayerSelect.onchange = function() {
|
||||
overlayLayerSelect.onchange = function () {
|
||||
const layer = layers[overlayLayerSelect.value];
|
||||
if (layer) {
|
||||
layer.setOpacity(0.7);
|
||||
@@ -238,13 +256,12 @@ overlayLayerSelect.onchange = function() {
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* Handle change event.
|
||||
*/
|
||||
renderEdgesCheckbox.onchange = function() {
|
||||
renderEdgesCheckbox.onchange = function () {
|
||||
renderEdges = renderEdgesCheckbox.checked;
|
||||
map.getLayers().forEach(function(layer) {
|
||||
map.getLayers().forEach(function (layer) {
|
||||
updateRenderEdgesOnLayer(layer);
|
||||
});
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user