Leaflet Draw not taking properties when converting FeatureGroup to GeoJson
I'm unable to convert my Layer properties into the properties of the GEOJson object using Leaflet(0.7.7)/Leaflet.Draw(latest). My workflow is: 1 Create Map: var map = L.map('#map', options); 2 Create a FeatureGroup: features= new L.FeatureGroup(); 3 Add to the Leaflet Map: map.addLayer(features); 4 On the draw:created event, I'm capturing e.layer and adding a bunch of properties: var layer = e.layer; layer.properties = { Title: 'Hello' }; features.addLayer(layer); geo_features = features.toGeoJSON(); However, my geo_features always have empty property attributes in each of the features and I