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.
55 lines
1.7 KiB
JavaScript
55 lines
1.7 KiB
JavaScript
import IIIF from '../src/ol/source/IIIF.js';
|
|
import IIIFInfo from '../src/ol/format/IIIFInfo.js';
|
|
import Map from '../src/ol/Map.js';
|
|
import TileLayer from '../src/ol/layer/Tile.js';
|
|
import View from '../src/ol/View.js';
|
|
|
|
const layer = new TileLayer(),
|
|
map = new Map({
|
|
layers: [layer],
|
|
target: 'map',
|
|
}),
|
|
notifyDiv = document.getElementById('iiif-notification'),
|
|
urlInput = document.getElementById('imageInfoUrl'),
|
|
displayButton = document.getElementById('display');
|
|
|
|
function refreshMap(imageInfoUrl) {
|
|
fetch(imageInfoUrl)
|
|
.then(function (response) {
|
|
response
|
|
.json()
|
|
.then(function (imageInfo) {
|
|
const options = new IIIFInfo(imageInfo).getTileSourceOptions();
|
|
if (options === undefined || options.version === undefined) {
|
|
notifyDiv.textContent =
|
|
'Data seems to be no valid IIIF image information.';
|
|
return;
|
|
}
|
|
options.zDirection = -1;
|
|
const iiifTileSource = new IIIF(options);
|
|
layer.setSource(iiifTileSource);
|
|
map.setView(
|
|
new View({
|
|
resolutions: iiifTileSource.getTileGrid().getResolutions(),
|
|
extent: iiifTileSource.getTileGrid().getExtent(),
|
|
constrainOnlyCenter: true,
|
|
})
|
|
);
|
|
map.getView().fit(iiifTileSource.getTileGrid().getExtent());
|
|
notifyDiv.textContent = '';
|
|
})
|
|
.catch(function (body) {
|
|
notifyDiv.textContent = 'Could not read image info json. ' + body;
|
|
});
|
|
})
|
|
.catch(function () {
|
|
notifyDiv.textContent = 'Could not read data from URL.';
|
|
});
|
|
}
|
|
|
|
displayButton.addEventListener('click', function () {
|
|
refreshMap(urlInput.value);
|
|
});
|
|
|
|
refreshMap(urlInput.value);
|