I'd like to make a connection to Geoserver to edit several point of a layer via WFS-T. I tried this starting by different examples but the map doesn't visualise the points. I have an openstreetmap base layer exposed via WMS. The server logs the call with the points I asked for... Here is the call I'm making:

var wfs_layer = new OpenLayers.Layer.Vector("Editable Features", {
                 strategies: [new OpenLayers.Strategy.BBOX(), saveStrategy],
                 protocol: new OpenLayers.Protocol.Script({
                           url: "http://192.168.0.10:8080/geoserver/wfs",
                           params: {
                                   service: "WFS",
                                   version: "1.0.0",
                                   srsName: "EPSG:3004",
                                   request: "GetFeature",
                                   typeName: "Incendi:inc2008",
                                   outputFormat: "gml3"
                           },
                  filterToParams: function(filter, params) {
                    // example to demonstrate BBOX serialization
                    if (filter.type === OpenLayers.Filter.Spatial.BBOX) {
                        params.bbox = filter.value.toArray();
                        if (filter.projection) {
                            params.bbox.push(filter.projection.getCode());
                        }
                    }
                    return params;
                 }
                 })
 });

Thanks in advance for your replies

有帮助吗?

解决方案

Caused by limitation on cross-origin javascript. I need to use a host to enable WFSs call from a remote server.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top