根据ol3和mapbox全球地形的海拔高度示例,我们进行了类似的设置,将高程值放入切片并使用ol.source.raster设置
var elevation = new ol.source.TileImage({
url: penetrationUrls[this.designator.toLowerCase()],
projection: newProj,// "EPSG:27700",
crossOrigin: 'anonymous',
tileGrid: tilegrid
});
var raster = new ol.source.Raster({
sources: [elevation],
operation: penetrates
});
现在 -
1)当鼠标悬停以查询像素值以显示高程的工具提示时,有什么聪明的方法吗? 2)如果想要在线串或类似物之后查询高度,是否有一种智能方法可以重复使用已加载的瓷砖?
答案 0 :(得分:2)
我们不渲染图层,以下代码是我最终使用的。跳过了操纵高程源的栅格图层。
如果对此进行改进,我会在磁贴缓存上添加一个LRU缓存,也许可以挂钩到ols tile缓存。
var elevation = new ol.source.TileImage({
url: options.template,
projection: elevationGridProjection,
crossOrigin: 'anonymous',
tileGrid: tilegrid
});
let tiles: { [key: string]: HTMLImageElement } = {};
elevation.on("tileloadend", (e) => {
let coord = e.tile.getTileCoord();
tiles[coord.join('-')] = e.tile.getImage();
});
this.map.on('pointermove', (evt) => {
// When user was dragging map, then coordinates didn't change and there's
// no need to continue
if (evt.dragging) {
return;
}
let coordinate = ol.proj.transform(evt.coordinate, this.map.getView().getProjection(), elevationGridProjection);
let tileCoord = tilegrid.getTileCoordForCoordAndResolution(coordinate, this.map.getView().getResolution());
let key = tileCoord.join('-');
if (key in tiles) {
let origin = tilegrid.getOrigin(tileCoord[0]);
let res = tilegrid.getResolution(tileCoord[0]);
let tileSize = tilegrid.getTileSize(tileCoord[0]);
let w = Math.floor(((coordinate[0] - origin[0]) / res) % (tileSize[0] | tileSize as number));
let h = Math.floor(((origin[1] - coordinate[1]) / res) % (tileSize[1] | tileSize as number));
var canvas = document.createElement("canvas");
canvas.width = tiles[key].width;
canvas.height = tiles[key].height;
// Copy the image contents to the canvas
var ctx = canvas.getContext("2d");
ctx.drawImage(tiles[key], 0, 0);
let img = ctx.getImageData(0, 0, canvas.width, canvas.height);
let imgData = img.data;
let index = (w + h * 256) * 4;
let pixel = [imgData[index + 0], imgData[index + 1], imgData[index + 2], imgData[index + 3]];
let height = (-10000 + ((pixel[0] * 256 * 256 + pixel[1] * 256 + pixel[2]) * 0.01))
console.log(`HEIGHT: ${height}, ${w},${h},${img.width}, ${img.height},${img.data.length} ,${index}, [${pixel.join(',')}]`);
}
});
答案 1 :(得分:0)
如果您还将栅格源中的内容渲染为图层,则可以使用Map#forEachLayerAtPixel
更轻松地获取像素数据。像这样:
map.on('pointermove', function(evt) {
map.forEachLayerAtPixel(evt.pixel, function(layer, pixel) {
let height = (-10000 + ((pixel[0] * 256 * 256 + pixel[1] * 256 + pixel[2]) * 0.01));
console.log(height);
}, undefined, function(layer) {
return layer.getSource() == raster;
});
});