Cap Longitudes and replace Bing with MapTiler
This commit is contained in:
@@ -85,8 +85,8 @@ const vectorSource = new VectorSource({
|
|||||||
vectorSource.addFeatures(features);
|
vectorSource.addFeatures(features);
|
||||||
});
|
});
|
||||||
const query = '(node(' +
|
const query = '(node(' +
|
||||||
epsg4326Extent[1] + ',' + epsg4326Extent[0] + ',' +
|
epsg4326Extent[1] + ',' + Math.max(epsg4326Extent[0], -180) + ',' +
|
||||||
epsg4326Extent[3] + ',' + epsg4326Extent[2] +
|
epsg4326Extent[3] + ',' + Math.min(epsg4326Extent[2], 180) +
|
||||||
');rel(bn)->.foo;way(bn);node(w)->.foo;rel(bw););out meta;';
|
');rel(bn)->.foo;way(bn);node(w)->.foo;rel(bw););out meta;';
|
||||||
client.send(query);
|
client.send(query);
|
||||||
},
|
},
|
||||||
@@ -110,10 +110,15 @@ const vector = new VectorLayer({
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const key = 'get_your_own_D6rA4zTHduk6KOKTXzGB';
|
||||||
|
const attributions = '<a href="https://www.maptiler.com/copyright/" target="_blank">© MapTiler</a> ' +
|
||||||
|
'<a href="https://www.openstreetmap.org/copyright" target="_blank">© OpenStreetMap contributors</a>';
|
||||||
|
|
||||||
const raster = new TileLayer({
|
const raster = new TileLayer({
|
||||||
source: new BingMaps({
|
source: new XYZ({
|
||||||
imagerySet: 'Aerial',
|
attributions: attributions,
|
||||||
key: 'As1HiMj1PvLPlqc_gtM7AqZfBL8ZL3VrjaS3zIb22Uvb9WKhuJObROC-qUpa81U5'
|
url: 'https://api.maptiler.com/tiles/satellite/{z}/{x}/{y}.jpg?key=' + key,
|
||||||
|
maxZoom: 20
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user