Peter Liu
Peter Liu
## Motivation Both the GeoJSON and vector tile specifications encode line geometry as discrete points, with straight line segments connecting them. This is a great, lightweight format to store and...
From the [demo](https://www.mapbox.com/mapbox.js/example/v1.0.0/swipe-layers/):  They do update when I zoom, of course, but I also need it when the slider moves, to maintain the desired illusion.
domain-restricted API tokens need a referrer URL to work properly. Safari 12.1.0 currently throws a `403: Forbidden` without one.
Looks like we might benefit from generating everything on a worker, to free up the main thread. Option to `OffscreenCanvas` on this line? https://github.com/vasturiano/three-spritetext/blob/master/src/index.js#L38
``` map.U.addCircleLayer('trees-circle', 'trees', { circleColor: 'green', // paint property circleRadius: ['interpolate', ['zoom'], 12, 3, 15, 5], // paint property circleSortKey: ['get', 'tree-sort-key'], // layout property filter: ['!=', 'type', 'stump'], //...
running `turf.buffer(fc, 0, 'miles')` on [this featurecollection](https://gist.github.com/peterqliu/ba3ded85d58a5d0e75a6) gives me this: Removing the polygon to the far northeast seems to solve this problem; it's also the only poly with a hole,...