Alexander Parshin
Alexander Parshin
It's better late than never :) Thank you for replacing `MapQuestOpen.Aerial`! But I don't think that OpenWeatherMap is a good improvement for this example: the error can be fixed by...
I have the following use case: I use threads.js inside a Node.js server (based on Express.js) to execute several client requests in parallel. Unfortunately, the complexity of the request is...
@timdorr @chaance It seems to me that from the end-user perspective, `useNavigate` hook itself shouldn't cause re-rendering of the component. The semantic of this hook is to perform navigation. If...
Unfortunately, I don't use contextmenu events. Instead, I add `L.Mixin.ContextMenu` to my layer class and set corresponding options during layer instantiation. So, the problem is that I can't get original...
No, not click event on menu item, but `contextmenu` event on the layer. I use `L.Mixin.ContextMenu` to add context menu to several layers on my map. These layers are custom...
@genzgd In our case, we just query rows with the exact match of a string column to a given string, but the problem is that we can't control size of...
@genzgd Thank you for your feedback, anyway. Not sure that I'll be able to propose a PR for this.... > Side note -- having query parameters of uncontrolled size is...
Hello Morgan, I've implemented a prototype of geodesic buffer here: https://github.com/aparshin/turf-buffer/tree/geodesic There is a Leaflet page for debug added there, but it requires to browserify sources (`browserify index.js --standalone buffer...
I've add a comment to your commit - could you check it, please...
Test case: ``` var brew = new classyBrew(); brew.setSeries([10, 15, 20]); brew.setNumClasses(3); brew.setColorCode('BuGn'); brew.classify('equal_interval'); console.log(brew.getColorInRange(9)); //returns false - that's right console.log(brew.getColorInRange(21)); //returns undefined - is this a bug? should return...