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.
84 lines
2.0 KiB
JavaScript
84 lines
2.0 KiB
JavaScript
import GeoJSON from '../src/ol/format/GeoJSON.js';
|
|
import Map from '../src/ol/Map.js';
|
|
import View from '../src/ol/View.js';
|
|
import {Circle as CircleStyle, Fill, Stroke, Style} from '../src/ol/style.js';
|
|
import {OSM, Vector as VectorSource} from '../src/ol/source.js';
|
|
import {Tile as TileLayer, Vector as VectorLayer} from '../src/ol/layer.js';
|
|
|
|
/** @type {VectorSource<import("../src/ol/geom/SimpleGeometry.js").default>} */
|
|
const source = new VectorSource({
|
|
url: 'data/geojson/switzerland.geojson',
|
|
format: new GeoJSON(),
|
|
});
|
|
const style = new Style({
|
|
fill: new Fill({
|
|
color: 'rgba(255, 255, 255, 0.6)',
|
|
}),
|
|
stroke: new Stroke({
|
|
color: '#319FD3',
|
|
width: 1,
|
|
}),
|
|
image: new CircleStyle({
|
|
radius: 5,
|
|
fill: new Fill({
|
|
color: 'rgba(255, 255, 255, 0.6)',
|
|
}),
|
|
stroke: new Stroke({
|
|
color: '#319FD3',
|
|
width: 1,
|
|
}),
|
|
}),
|
|
});
|
|
const vectorLayer = new VectorLayer({
|
|
source: source,
|
|
style: style,
|
|
});
|
|
const view = new View({
|
|
center: [0, 0],
|
|
zoom: 1,
|
|
});
|
|
const map = new Map({
|
|
layers: [
|
|
new TileLayer({
|
|
source: new OSM(),
|
|
}),
|
|
vectorLayer,
|
|
],
|
|
target: 'map',
|
|
view: view,
|
|
});
|
|
|
|
const zoomtoswitzerland = document.getElementById('zoomtoswitzerland');
|
|
zoomtoswitzerland.addEventListener(
|
|
'click',
|
|
function () {
|
|
const feature = source.getFeatures()[0];
|
|
const polygon = feature.getGeometry();
|
|
view.fit(polygon, {padding: [170, 50, 30, 150]});
|
|
},
|
|
false
|
|
);
|
|
|
|
const zoomtolausanne = document.getElementById('zoomtolausanne');
|
|
zoomtolausanne.addEventListener(
|
|
'click',
|
|
function () {
|
|
const feature = source.getFeatures()[1];
|
|
const point = feature.getGeometry();
|
|
view.fit(point, {padding: [170, 50, 30, 150], minResolution: 50});
|
|
},
|
|
false
|
|
);
|
|
|
|
const centerlausanne = document.getElementById('centerlausanne');
|
|
centerlausanne.addEventListener(
|
|
'click',
|
|
function () {
|
|
const feature = source.getFeatures()[1];
|
|
const point = feature.getGeometry();
|
|
const size = map.getSize();
|
|
view.centerOn(point.getCoordinates(), size, [570, 500]);
|
|
},
|
|
false
|
|
);
|