Cobertos
Cobertos
Ended up just doing the manual installation as specified in `node-gyp` https://github.com/nodejs/node-gyp#option-2
This would really be ideal for my use case as well. I manage multiple projects at once and it'd be nice if I could like `Ctrl` + `Win` + `R`...
Ah, it looks like there's two different usages of "fast". One that disables antialiasing and such (OSMBuildings & GLX `fastMode` option), and one that is used in `View#speedUp()`, `this.isFast`. The...
As a workaround, I just removed all the timing stuff from `renderFrame()` and left that up to the user to call like: ```javascript const new OSMBuildings(); function animate() { osmb.view.renderFrame();...
Are you talking about `.merge()` on the root config or all `.merge()`s in things like `ChainedMap`, `ChainedSet`, etc? I think at the root, perhaps `.clone()` would solve most use cases...
I am curious on this as well
Received the same error on a Raspberry Pi B+ and stopping the window server (`systemctl stop display-manager`) fixed it
Just wanted to say thanks as well! This project enabled me to finish a Christmas present for a friend. Also was able to get this to run on a Raspberry...
> @BadIdeaException that happens because on server.js fetch-mock is importing node-fetch using require, which on version 3 is not supported anymore. > > To fix it, downgrade your node-fetch version...