want to render maps similar to i.e. google maps?
- decoding of open map tiles using zig-protobuf[https://github.com/Arwalk/zig-protobuf]
- rendering with z2d[https://github.com/vancluever/z2d]
get a map tile i.e. from maptiler or self hosted tile server use
const maptiler = @import("osmr").maptiler;
...
dig deeper into the tile data with the decoder
const decoder = @import("osmr").decoder;
...
implement custom maps rendering by looking at:
const renderer = @import("osmr").renderer;
...
MIT