Skip to content

Commit

Permalink
Add example for changing dimensions with webgllayer
Browse files Browse the repository at this point in the history
  • Loading branch information
sweepline committed Feb 28, 2024
1 parent 5636052 commit a5bf075
Show file tree
Hide file tree
Showing 2 changed files with 86 additions and 0 deletions.
15 changes: 15 additions & 0 deletions examples/webgl-dimensions.html
@@ -0,0 +1,15 @@
---
layout: example.html
title: WebGL Tile Transitions
shortdesc: Example of smooth tile transitions when changing the dimension of a WebGL layer.
docs: >
Demonstrates smooth reloading of layers when changing a dimension continuously. The reason this example exists is to show this feature working with the WebGL based renderer as compared to the default canvas based renderer shown in <a href="/en/latest/examples/wmts-dimensions.html">the WMTS Tile Transitions example</a>. The demonstration layer is a global sea-level computation (flooding computation from <a href="https://scalgo.com/">SCALGO</a>, underlying data from <a href="https://cgiarcsi.community/data/srtm-90m-digital-elevation-database-v4-1">CGIAR-CSI SRTM</a>) where cells that are flooded if the sea-level rises to more than <em>x</em> m are colored blue. The user selects the sea-level dimension using a slider.
tags: "webgl, parameter, transition, grid"
---

<div id="map" class="map"></div>
<label>
Sea-level
<input id="slider" type="range" value="10" max="100" min="-1">
</label>
<span id="theinfo"></span>
71 changes: 71 additions & 0 deletions examples/webgl-dimensions.js
@@ -0,0 +1,71 @@
import Map from '../src/ol/Map.js';
import OSM from '../src/ol/source/OSM.js';
import TileLayer from '../src/ol/layer/Tile.js';
import View from '../src/ol/View.js';
import WMTS from '../src/ol/source/WMTS.js';
import WMTSTileGrid from '../src/ol/tilegrid/WMTS.js';
import WebGLTileLayer from '../src/ol/layer/WebGLTile.js';
import {get as getProjection} from '../src/ol/proj.js';
import {getTopLeft, getWidth} from '../src/ol/extent.js';

// create the WMTS tile grid in the google projection
const projection = getProjection('EPSG:3857');
const tileSizePixels = 256;
const tileSizeMtrs = getWidth(projection.getExtent()) / tileSizePixels;
const matrixIds = [];
const resolutions = [];
for (let i = 0; i <= 14; i++) {
matrixIds[i] = i;
resolutions[i] = tileSizeMtrs / Math.pow(2, i);
}
const tileGrid = new WMTSTileGrid({
origin: getTopLeft(projection.getExtent()),
resolutions: resolutions,
matrixIds: matrixIds,
});

const scalgoToken = 'CC5BF28A7D96B320C7DFBFD1236B5BEB';

const wmtsSource = new WMTS({
url: 'https://ts2.scalgo.com/olpatch/wmts?token=' + scalgoToken,
layer: 'SRTM_4_1:SRTM_4_1_flooded_sealevels',
format: 'image/png',
matrixSet: 'EPSG:3857',
attributions: [
'<a href="https://scalgo.com" target="_blank">SCALGO</a>',
'<a href="https://cgiarcsi.community/data/' +
'srtm-90m-digital-elevation-database-v4-1"' +
' target="_blank">CGIAR-CSI SRTM</a>',
],
tileGrid: tileGrid,
style: 'default',
dimensions: {
'threshold': 100,
},
});

const map = new Map({
target: 'map',
view: new View({
projection: projection,
center: [-9871995, 3566245],
zoom: 6,
}),
layers: [
new TileLayer({
source: new OSM(),
}),
new WebGLTileLayer({
opacity: 0.5,
source: wmtsSource,
}),
],
});

const slider = document.getElementById('slider');
const updateSourceDimension = function () {
wmtsSource.updateDimensions({'threshold': slider.value});
document.getElementById('theinfo').innerHTML = slider.value + ' meters';
};
slider.addEventListener('input', updateSourceDimension);
updateSourceDimension();

0 comments on commit a5bf075

Please sign in to comment.