Add rendering test for vector tile layer rotation
This commit is contained in:
@@ -0,0 +1,27 @@
|
|||||||
|
import Map from '../../../src/ol/Map.js';
|
||||||
|
import View from '../../../src/ol/View.js';
|
||||||
|
import VectorTileSource from "../../../src/ol/source/VectorTile";
|
||||||
|
import MVT from "../../../src/ol/format/MVT";
|
||||||
|
import {createXYZ} from "../../../src/ol/tilegrid";
|
||||||
|
import VectorTileLayer from "../../../src/ol/layer/VectorTile";
|
||||||
|
|
||||||
|
const map = new Map({
|
||||||
|
layers: [
|
||||||
|
new VectorTileLayer({
|
||||||
|
source: new VectorTileSource({
|
||||||
|
format: new MVT(),
|
||||||
|
tileGrid: createXYZ(),
|
||||||
|
url: '/data/tiles/mvt/{z}-{x}-{y}.vector.pbf',
|
||||||
|
transition: 0
|
||||||
|
})
|
||||||
|
})
|
||||||
|
],
|
||||||
|
target: 'map',
|
||||||
|
view: new View({
|
||||||
|
center: [1825927.7316762917, 6143091.089223046],
|
||||||
|
zoom: 14
|
||||||
|
})
|
||||||
|
});
|
||||||
|
|
||||||
|
map.getView().setRotation( Math.PI / 4);
|
||||||
|
render({message: 'Vector tile layer rotates'});
|
||||||
@@ -76,15 +76,6 @@ describe('ol.rendering.layer.VectorTile', function() {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
it('renders rotated view correctly with the canvas renderer', function(done) {
|
|
||||||
createMap();
|
|
||||||
map.getView().setRotation(Math.PI / 4);
|
|
||||||
waitForTiles(source, {}, function() {
|
|
||||||
expectResemble(map, 'rendering/ol/layer/expected/vectortile-canvas-rotated.png',
|
|
||||||
14, done);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
it('renders rotated view correctly with vector layer on top', function(done) {
|
it('renders rotated view correctly with vector layer on top', function(done) {
|
||||||
createMap();
|
createMap();
|
||||||
const vectorSource = new VectorSource({
|
const vectorSource = new VectorSource({
|
||||||
|
|||||||
Reference in New Issue
Block a user