Jack Farley
Jack Farley
I'm looking at the same thing. He's got the case on Shapeways http://www.shapeways.com/search?q=dactyl&type=
Just noticed similar where all points are the same on a non-time plot ```js const config = { "width": 625, "height": 300, "timeFormats": { "md": "{D}/{M}" }, "cursor": { "points":...
The best I could come up with was having a watch manager in union fs that when `watch` is called, it attaches the initial watch to the file on the...
@mdj1 to do the same as the example you gave (in terms of the map), you just need to change the styling on the draggable markers. The example has an...
Yes there is ```js const cancelDrawing = (event) => { if (map.editTools.drawing()) { map.editTools.stopDrawing(); // TODO Remove the component map.editTools._drawingEditor.feature.remove(); if (event) { event.preventDefault(); } } }; document.addEventListener('keyup', (event) =>...
There seems to be a bug that Leaflet.Editable doesn't handle calls to the shapes `setLatLngs()` function. What you can do to workaround it is disable editing on the shape before...
Thanks for the comment. Yes, that (cropping before inserting) would definitely work for the example image. For something like the image in the gif on the readme, I think it...
See https://github.com/geo-data/cesium-terrain-builder/issues/52#issuecomment-333924077
I also forked snarkdown to make [twitchdown](https://www.npmjs.com/package/twitchdown) (8kb minified) that you can pass an h/createElement function. Plugs right into (p)react (see https://bytes.nz/8jf749h https://gitlab.com/bytesnz/marss/blob/initial-developement/src/components/markdown.tsx#L59 for an example of it in use...
If you are looking at adding standardised error messages, I would love to seem them be something you can choose to add to the existing error object and be designed...