Example of a XYZ source.
The XYZ source is used for tile data that is accessed through URLs that include a zoom level and tile grid x/y coordinates.
import 'ol/ol.css';
import Map from 'ol/Map';
import TileLayer from 'ol/layer/Tile';
import View from 'ol/View';
import XYZ from 'ol/source/XYZ';
var map = new Map({
target: 'map',
layers: [
new TileLayer({
source: new XYZ({
url:
'https://{a-c}.tile.thunderforest.com/cycle/{z}/{x}/{y}.png' +
'?apikey=Your API key from http://www.thunderforest.com/docs/apikeys/ here',
}),
}) ],
view: new View({
center: [-472202, 7530279],
zoom: 12,
}),
});
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>XYZ</title>
<!-- Pointer events polyfill for old browsers, see https://caniuse.com/#feat=pointer -->
<script src="https://unpkg.com/elm-pep"></script>
<style>
.map {
width: 100%;
height:400px;
}
</style>
</head>
<body>
<div id="map" class="map"></div>
<script src="main.js"></script>
</body>
</html>
{
"name": "xyz",
"dependencies": {
"ol": "6.5.0"
},
"devDependencies": {
"parcel": "^2.0.0-beta.1"
},
"scripts": {
"start": "parcel index.html",
"build": "parcel build --public-url . index.html"
}
}