Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
myss45285yDamn I feel ya, but if its not your private project, what about just using on-demand cloud computing for it? I mean, it was literally made for problems like this 🤔
-
Your not storing the pngs are you? I’d use a vector format for something like this, then it easy to scale to different zooms without rerendering etc. rendering is actually faster from frameworks I’ve looked at under the hood. But I don’t know what your limitations are
-
Demitpi785yWhy not use Vector tiles? Like mapbox MBtiles, a lot faster and you can load them from a host server even offline if you have the pbfs.
-
@Demitpi Currently trying to but the generation takes a huge amount of time (currently trying Europe and it reached 0.1 percent in 10/minutes at a too low zoom level)
-
These things are fun. We did a zoom render for a gameworld (via the highest res image we could find) Had to find somebody with enough ram to pull it off. Good to know there are better options out there, using 128GB+ of ram for an image was no fun. Take my ++ for the interesting post.
-
@Demitpi I'm generating them anyways now as their own tools also provide a ready to use dockerized server after generation!
-
@rootshell @Demitpi I just can't seem to find a leaflet or openlayers example which can render pbf files into a good looking slippy map 😬
-
Demitpi785y@linuxxx they have a preety good documentation here https://docs.mapbox.com/mapbox-gl-j...
-
Demitpi785y
Related Rants
-
EdoPhoenix7I had to write a job portal which had to be done in php5.6 and mariadb and it had to be IE compatible. All of ...
-
0x0000FFFF5My last successful project was a small project I did together with my gf in javascript. She needed to make som...
-
Demolishun1The night I hooked up with your mother...son.
I wouldn't say least successful but my current one has an extremely irritating annoyance.
I have to setup a tile server (for those draggable maps in browsers and such) and I've come to the point where I'm skilled enough to at least setup the server. BUT:
- Generating the tiles from a database to PNG pbf files at a max 15 zoom level of only even the goddamn nerherlands will take more than a hundred days and I want the entire goddamn world. (20 core rather powerful server).
The end result is veeery fast.
- The importing is fast enough but generating them on the fly is so painstakingly slow 😫
😖
rant
wk177