gpt4 book ai didi

javascript - 如何获取mapbox上像素的颜色

转载 作者:行者123 更新时间:2023-12-01 00:38:59 26 4
gpt4 key购买 nike

我的 map 上有雷达光栅,我想通过光标的位置显示雷达的数据颜色。

An example of a radar

我试图通过 map.getCanvas().getContext('2d') 获取 Mapbox Canvas 的上下文,但它返回 null。

有办法做到这一点吗?

最佳答案

您可以通过这种方式获取 Canvas 上下文(webgl)并检查颜色。

map.on("mousemove", e => {
const canvas = map.getCanvas();
const gl = canvas.getContext('webgl') || canvas.getContext('webgl2');
if (gl) {
const { point } = e;
const { x, y } = point;
const data = new Uint8Array(4);
const canvasX = x - canvas.offsetLeft;
const canvasY = canvas.height - y - canvas.offsetTop;
gl.readPixels(canvasX, canvasY, 1, 1, gl.RGBA, gl.UNSIGNED_BYTE, data);
const [r, g, b, a] = data;
const color = `rgba(${r}, ${g}, ${b}, ${a})`;
console.log(`Color at (${x}, ${y}) = ${color}`);
}
});

我必须将 map 选项 preserveDrawingBuffer 设置为 true 才能获取像素值。

const map = new mapboxgl.Map({
container: "map",
style: "mapbox://styles/mapbox/light-v10",
zoom: 4,
center: [77.209, 28.6139],
preserveDrawingBuffer: true
});

这个codepen实现了一个简单的颜色检查器:https://codepen.io/manishraj/full/jONzpzL

关于javascript - 如何获取mapbox上像素的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57862383/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com