test clipping with rotation

This commit is contained in:
mike-000
2020-06-17 11:20:29 +01:00
committed by GitHub
parent 1c725c8cfc
commit a27e3486c6

View File

@@ -0,0 +1,26 @@
import GeoJSON from '../../../src/ol/format/GeoJSON.js';
import Map from '../../../src/ol/Map.js';
import VectorImageLayer from '../../../src/ol/layer/VectorImage.js';
import VectorSource from '../../../src/ol/source/Vector.js';
import View from '../../../src/ol/View.js';
import {transformExtent} from '../../../src/ol/proj.js';
new Map({
target: 'map',
view: new View({
center: [0, 0],
zoom: 1,
rotation: Math.PI / 4,
}),
layers: [
new VectorImageLayer({
extent: transformExtent([-50, -45, 50, 45], 'EPSG:4326', 'EPSG:3857'),
source: new VectorSource({
url: '/data/countries.json',
format: new GeoJSON(),
}),
}),
],
});
render();