How can I use WFS-T in openlayers-2?
I'm using geoserver in server side.
asked Aug 18, 2014 at 11:53
-
1Read for example dev.openlayers.org/releases/OpenLayers-2.8/examples/wfs-t.html and boundlessgeo.com/2014/06/openlayers-editing-wfs-t. OpenGeo Suite comes with GeoEditor which is WFS-T client using OpenLayers.user30184– user301842014年08月18日 11:58:32 +00:00Commented Aug 18, 2014 at 11:58
-
1What do you want to do with WFS? Do you want to just display the data? or do you want to edit the data using the Transactional editing with WFS?Devdatta Tengshe– Devdatta Tengshe2014年08月19日 03:04:54 +00:00Commented Aug 19, 2014 at 3:04
-
i want to using Transaction Editing.Morteza Malvandi– Morteza Malvandi2014年08月19日 07:09:45 +00:00Commented Aug 19, 2014 at 7:09
1 Answer 1
Define a save strategy as follow and add it to you map:
var saveStrategy = new OpenLayers.Strategy.Save();
Modify the features and then call:
saveStratefy.save();
answered Aug 15, 2015 at 5:51
default