CartoDB / carto-vl

CARTO VL: a Javascript library to create vector-based visualizations
BSD 3-Clause "New" or "Revised" License
129 stars 26 forks source link

[Research] Render MVT tiles from BigQuery #1428

Closed Jesus89 closed 4 years ago

Jesus89 commented 4 years ago

This is a quick PoC for using MVT tiles from BigQuery in VL. A new source called BQMVT is created based on current MVT. Instead of requesting tiles separated, it performs multi-tile requests to BigQuery without using any Google API client. The interface of the source is:

new carto.source.BQMVT({ projectId, datasetId, tableId, token }, metadata);

Note: I have pushed the dist to the branch in order to have testing CDN for the integration with CARTOframes: https://cdn.jsdelivr.net/gh/cartodb/carto-vl@bq-mvt-ww/dist/carto-vl.min.js.

Jesus89 commented 4 years ago

Superseded by https://github.com/CartoDB/carto-vl/pull/1444