Vladimir Pavlenko
Vladimir Pavlenko
Seems like with this merged PR https://github.com/angular/angular/pull/54854 in v18 we will be able to do it easier 🎉
I am having the same issue. I had to downgrade the `Leaflet` to `1.4.0` in order for the `leaflet-draw` plugin to be worked without the error. It would be nice...
Seems that Leaflet has changed the logic in the Path.prototype.setStyle method (https://github.com/Leaflet/Leaflet/blob/master/src/layer/vector/Path.js#L108), so it causes the JavaScript error if you pass `null` or `undefined` in that method (https://github.com/Leaflet/Leaflet.draw/blob/develop/src/edit/handler/Edit.Poly.js#L152). If you...
@joshkopecek I have got lots of things associated with Leaflet.Draw plugin. It now pains me to replace this. The best way for me to fork this plugin and maintain it...
With [email protected] you don't need to enable editing mode with my comment above. They have changed `setStyle` method (https://github.com/Leaflet/Leaflet/pull/6728) so you can pass `null` to this method. Working demo can...
Should partially close https://github.com/angular/angular/issues/15360
@flash-me I am wondering why we should add CustomDatePipe to the providers list? Does it mean we can inject this class, but where can it be needed?
We could define root interceptors in `SharedModule` and export `HttpClientModule` from that module. So, in `FeatureModule` we would import `SharedModule` and define its own child interceptors. Go to https://stackblitz.com/edit/angular-hjzfnu?file=src%2Fapp%2Fshared.module.ts and...
I fixed it by disabling editing handler when `dragstart` event if fired and enabling it after `dragend`.
Spend lots of time trying to find a solution. I've only found a similar issue with no working answer 😕 @pmoleri did you find a workaround? https://stackoverflow.com/q/78754692/8230845