Jules Blom
Jules Blom
According to [this issue in the DoczJS repo](https://github.com/doczjs/docz/issues/1516), the issue is with GatsbyJS. I added the latest version of Gatsby manually with `npm i [email protected]` which seemed to fix this...
> Thank you for the updates! I added some basic tests for this in a separate branch, see https://github.com/cmfcmf/docusaurus-search-local/tree/ignore-tests. However, these new tests are currently failing, because ignoring `/docs/doc2` will...
I got a bit swamped in other work but it turns out I was wrong about this > If the url to be ignored is added without the version, like:...
For now, I solved it like this ```javascript const editLayer = new (EditableGeoJsonLayer as any)({ id: 'editable-geojson-layer', onEdit: (editInfo: any) => {}, pickingRadius: 15, mode, ```
This bug seems to have been introduced in pull request #496 ([commit](https://github.com/pmndrs/drei/commit/a2befcd2aca8d2ccdd4be36a120562e69ee19d98)). I tried removing the `.set(0, 1, 0)` in `mainCamera.up.set(0, 1, 0).applyQuaternion(q1).normalize()` [line 102 in GizmoHelper.tsx](https://github.com/pmndrs/drei/blob/74073db27b62cfb79b8a95135f2ed708cb5b9284/src/core/GizmoHelper.tsx#L102) but that did...
Thanks to @kevinresol comment I found a workaround. Edit handles can be styled by defining props for `'points-circle'` on `_subLayerProps` of the `guides` `_subLayerProps`, see the example, much clearer ```js...
Take a look at the following Observable notebook [D3: U.S. Map with Puerto Rico ](https://observablehq.com/@d3/u-s-map-with-puerto-rico). I'm not sure how to go about it in Vega though
@armsp Ok you made me curious so I fiddled around with it for a while, and good news, it is possible in Vega. I just made [this Observable notebook](https://observablehq.com/@julesblm/us-map-with-puerto-rico-with-vega) that...
@armsp If you could share your attempt in an Observable notebook or code block here I could take a look. Right now it's really hard to tell for me why...
Ok I made some suggestions to that notebook over on Observable. I'll copy my comments here for good measure: You can use a custom projection with Vega Embed as Vega...