Andreas
Andreas
We have the same problem but this is a Leaflet Issue (https://github.com/Leaflet/Leaflet/issues/6177) What you can do to make the result a bit better: (Psuedo code) const currentZoomLevel = map.getZoom(); map.setZoom(MAX_ZOOM_LEVEL);...
We have had the same problem with angular (7/8). We ended up with a fork where we added the same core-js polyfills that angular does to avoid the zone.js conflict....
Override the css? .leaflet-polygon { fill: #ff0000; fill-opacity: 0.5; stroke: #50622b; }
Try to import Freedraw just before you import Zone. polyfill.ts (something like this): import "leaflet-freedraw" /*************************************************************************************************** * Zone JS is required by Angular itself. */ import 'zone.js/dist/zone'; // Included with...