Kristofor Carle

Results 11 comments of Kristofor Carle

I made a fork of the docker image that fixes WebGL rendering. https://github.com/openmaphub/manet-dockerfile The two main things I did were: - Installed Firefox (which probably installs a missing dependency of...

For anyone else that ends up here looking for an in-browser example, this is what worked for me: ```js import {csv} from "csvtojson"; // ... const res = await fetch(url);...

I had this error because I was looping and queuing hundreds of promises like ```js await Promise.all(filesToDownload.map(url => fetch(url))) ``` not the best plan... from the code it looks this...

In case it helps anyone else who is stuck on this (and only needs to use `querySourceFeatures` in JS), I've hacked this together https://github.com/maphubs/mapbox-gl-regex-query Could this be done with custom...

@politvs lets move that discussion here https://github.com/maphubs/mapbox-gl-regex-query/issues/1 so we don't spam the Mapbox team :)

I got this error on MacOS when upgrade from node 10. Deleting `package-lock.json` and `node_modules` and doing a clean `npm install` resolved it. This was with: [email protected] Node 12.16.1 MacOS...

Hi, is it maybe related to https://github.com/dodo/node-unicodetable/issues/16 ?

@krystian50 check for error messages from `npm install node-zopfli-es` likely you are missing a prerequisite, it needs python, make, gcc, g++ etc. depending on the platform, see the notes at...

@H-Gomez @krystian50 any chance you are using Docker? or developing on a different platform and copying your `node_modules`? I just got this error on a new project because I forgot...

@H-Gomez Possibly something odd on your machine like a permissions issue? I'd recommend setting up a very simple hello world express app, then add shrink-ray-current to that and see if...