Hacker News new | ask | show | jobs
by tantalor 1199 days ago
My point was if that's truly the dominant use case then the map should be a static image initially and replaced with tiles lazily.
1 comments

It is the dominant use case, and a static server-rendered image is more computationally expensive to generate than a tile-based system; a static image has effectively infinite variation in center, bounds and map scale, so requires dynamic computation from a server to send a JPEG/PNG. A tile-based system can just pre-generate a couple million tiles which is exactly the strategy Protomaps uses.