I saw this referenced on Hacker News over the weekend and thought you might find it at least interesting, if you aren't already aware of it.
Intro/demo:
Technical explanation:
protomaps.com
Code:
github.com
This is a pretty ingenious approach to building low-cost content delivery for map sites. The article has all the details, but in short: this allows you to store your map tiles in a single static file. That property allows you to better exploit low cost commodity cloud storage (e.g. S3) to host your basemaps. Instead of having to upload, manage, and store tens or hundreds of millions of map tiles, you can just store one compressed file, and the client will seamlessly request byte ranges from that file, more like a video codec. This is done in a way that deduplicates tiles and optimizes for panning and zooming, reducing the number of overall requests. Neat stuff.
Intro/demo:

Technical explanation:

Dynamic Maps, Static Storage
Update: This post describes the internals of the PMTiles v2 format. Check out the post on PMTiles V3 for the latest! Serverless computing supposedly will let developers run sophisticated applications on the web without wrangling virtual machines or databases. New products like Lambda offer...
Code:
GitHub - protomaps/PMTiles: Pyramids of map tiles in a single file on static storage
Pyramids of map tiles in a single file on static storage - protomaps/PMTiles
This is a pretty ingenious approach to building low-cost content delivery for map sites. The article has all the details, but in short: this allows you to store your map tiles in a single static file. That property allows you to better exploit low cost commodity cloud storage (e.g. S3) to host your basemaps. Instead of having to upload, manage, and store tens or hundreds of millions of map tiles, you can just store one compressed file, and the client will seamlessly request byte ranges from that file, more like a video codec. This is done in a way that deduplicates tiles and optimizes for panning and zooming, reducing the number of overall requests. Neat stuff.