Han Long

Results 2 comments of Han Long

![image](https://github.com/openlayers/openlayers/assets/87958889/a62f1452-088d-4910-9b5a-ab5b493307fe) My current method is to calculate the x, y, and z values ​​​​​​through the extent and manually replace the x, y, and z on the url, but the graphics...

`import { ipcRenderer, contextBridge } from 'electron' contextBridge.exposeInMainWorld('ipcRenderer', { on(...args: Parameters) { const [channel, listener] = args; ipcRenderer.on(channel, listener); // 返回一个取消监听的函数 return () => { ipcRenderer.off(channel, listener); }; }, send(...args:...