Han Long
Han Long
 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:...