tabindex without focux condition

This commit is contained in:
Andreas Hocevar
2019-11-13 22:51:45 +01:00
parent 8b036ba96c
commit 643a3ad86b
5 changed files with 42 additions and 22 deletions

18
examples/page-scroll.js Normal file
View File

@@ -0,0 +1,18 @@
import Map from '../src/ol/Map.js';
import View from '../src/ol/View.js';
import TileLayer from '../src/ol/layer/Tile.js';
import OSM from '../src/ol/source/OSM.js';
const map = new Map({
layers: [
new TileLayer({
source: new OSM()
})
],
target: 'map',
view: new View({
center: [0, 0],
zoom: 2
})
});