diff --git a/examples/vector-osm.js b/examples/vector-osm.js
index 83d504b7d6..96cd3dde4a 100644
--- a/examples/vector-osm.js
+++ b/examples/vector-osm.js
@@ -85,8 +85,8 @@ const vectorSource = new VectorSource({
vectorSource.addFeatures(features);
});
const query = '(node(' +
- epsg4326Extent[1] + ',' + epsg4326Extent[0] + ',' +
- epsg4326Extent[3] + ',' + epsg4326Extent[2] +
+ epsg4326Extent[1] + ',' + Math.max(epsg4326Extent[0], -180) + ',' +
+ epsg4326Extent[3] + ',' + Math.min(epsg4326Extent[2], 180) +
');rel(bn)->.foo;way(bn);node(w)->.foo;rel(bw););out meta;';
client.send(query);
},
@@ -110,10 +110,15 @@ const vector = new VectorLayer({
}
});
+const key = 'get_your_own_D6rA4zTHduk6KOKTXzGB';
+const attributions = '© MapTiler ' +
+ '© OpenStreetMap contributors';
+
const raster = new TileLayer({
- source: new BingMaps({
- imagerySet: 'Aerial',
- key: 'As1HiMj1PvLPlqc_gtM7AqZfBL8ZL3VrjaS3zIb22Uvb9WKhuJObROC-qUpa81U5'
+ source: new XYZ({
+ attributions: attributions,
+ url: 'https://api.maptiler.com/tiles/satellite/{z}/{x}/{y}.jpg?key=' + key,
+ maxZoom: 20
})
});