[GIS] Make two layers editable in leaflet draw

leaflet

I use Leaflet draw to draw markers and polygons on a map. The created features are saved to two separate feature groups. One feature group for the markers and one for the polygons. Now I want to edit the features. How can I add two feature groups as editable layers:

'edit': {
  'featureGroup': featureGroupMarker, featureGroupPolygon
}

Best Answer

I ended up solving it by adding twice the Leaflet drawControl to the map. One time for markers and one time for the polygons. This way I can specify which layer should be edited.