I have polygons loaded using method
map.data.loadGeoJson('geo.json',{ idPropertyName: 'ID' });
Now I want to make editable one of loaded from geojson polygons.
I was tried:
map.data.getFeatureById(1).setProperty('editable', true);
But it seems that data.feature don't have editable property?
Any ideas how to make it in easiest way? Only one idea that I have in this moment is to make my own parser from geoJson and draw all shapes as google.maps.Polygon().