AliFlux/VectorTileRenderer

Vector Tile Library

pauldendulk opened this issue · 5 comments

I see you have a reference to Bert Temmes vector tile library but actually use the vector tile library developed by mapbox. What is the reason you switched to the mapbox one? Any problems you ran into?

I started with Bert's library. But when the project was completed, I did some thorough benchmarking. Apparently the mapbox's vector tile parsing library is considerably faster than Bert's.

Okay, thanks for the info. Perhaps Bert's geojson step is taking too much time.

Or it could be the protobuf-net, the library that is decoding pbf files. Can't say for sure until the profiling is done.

Do you know what the mapbox library is using for the decoding?

Do you know if there are plans to use msgpack instead of protobuf at some point?

Mapbox library is doing decoding by itself, without dependencies. And I don't think there are plans to port it from protobuf, because its a pretty stable format and backed by Google.