https://github.com/Outdooractive/Leaflet.FeatureGroup.LoadEvents/blob/26e38031de91d4bc272e15fca898ea28668d0c2a/FeatureGroup.LoadEvents.js#L58 Line 58 reads `return FGp.removeLayer.apply(this.arguments);` which causes exception. Should read: `return FGp.removeLayer.apply(this, arguments);`
Leaflet.FeatureGroup.LoadEvents/FeatureGroup.LoadEvents.js
Line 58 in 26e3803
Line 58 reads
return FGp.removeLayer.apply(this.arguments);which causes exception. Should read:
return FGp.removeLayer.apply(this, arguments);