Sam Matthews
Sam Matthews
When running `generatepath lb` on a URL with a number of `:`'s, everything beyond the second-to-last semicolon is removed from the URL, resulting in unexpected URLs returned. Example URL input...
The docs in the README don't 100% reflect reality at this point. For example, `threshold` in loadTiles isn't documented, and the `options` for queryTiles are completely missing. cc @miles-dev
I'm looking at the [`buildQuery` function portion that uses spherical mercator](https://github.com/mapbox/vector-tile-query/blob/master/index.js#L18) and noticing something funky... vector tile query requires lng/lat pairs, like `[-116.2683, 46.2312]`. When those coordinates are passed into...
This adds a new test to assert that setting a style layer with `"visibility": "none"` doesn't result in the layer being dropped from the style. cc @ClareTrainor
Updates the node-cpp-skel badge to use the github hosted uri @springmeyer
Working through vtquery has made us think it'd be great to have a couple reprojection utilities in spatial-algorithms (or elsewhere). 1. Convert vector tile coordinates to lnglat - requires (x,...
within
@artemp I'm wondering if I can use intersection.hpp to perform a "within"-esque operation?I'd like to basically get a boolean response if two geometries intersect - in my case a point-in-polygon...
Currently all of our tests don't work because testing webgl in a headless browser is ... complex. Looking at @tmcw's https://github.com/tmcw/testing-webgl
Currently in our reducer we use `Object.assign()` liberally. This works great for single-depth objects, and key value pairs where the `value` isn't another object. Working on #101 shows that if...