Re: [OpenLayers-Users] Error-when-using-XMLHTTPRequest

2009-08-25 Thread Kris Geusebroek
Hi Juan, A few months ago i posted this solution to the list: http://n2.nabble.com/Re-OpenLayers-Users-Error-when-using-XMLHTTPRequest-throughrefreshing-a-wfs-layer-every-n-seconds-td2732129.html Also attaché the original email to this message. Hope this is of help to you Cheers Kris

[OpenLayers-Users] let me the know the insatallion on my system

2009-08-25 Thread Helen Sona
Dear sirs, I dont know even install the entire software package.please kindly guide me to install on my system. so Iam requesting you to please let me have the installation brochure first. ___ Users mailing list Users@openlayers.org

[OpenLayers-Users] Strategy.save() callback?

2009-08-25 Thread Jimmy Aumard
Hi list, I want to know if Strategy.save() have a callback if the request is good or bad? Thanks Jim ___ Users mailing list Users@openlayers.org http://openlayers.org/mailman/listinfo/users

[OpenLayers-Users] Problem WFS-T add new geometry (point)

2009-08-25 Thread Jimmy Aumard
Hi list, I try to use WFS-T to add a new point on my layer, I use Openlayers, geoserver 1.7.6 and Postgis. This is my request: wfs:Transaction xmlns:wfs=http://www.opengis.net/wfs; service=WFS version=1.1.0 xsi:schemaLocation =http://www.opengis.net/wfs

Re: [OpenLayers-Users] Strategy.save() callback?

2009-08-25 Thread Kris Geusebroek
Hi Jimmy, You could use the onCommit function of the strategy to call your function var saveOptions = { onCommit: function(response) { if (response.success()) { var features=response.reqFeatures; // rest of the code originally

Re: [OpenLayers-Users] Strategy.save() callback?

2009-08-25 Thread Jimmy Aumard
Thanks Kris it's work perfectly!! Jim 2009/8/25 Kris Geusebroek kgeusebr...@xebia.com Hi Jimmy, You could use the onCommit function of the strategy to call your function *var* saveOptions = { onCommit: *function*(response) { *if*

[OpenLayers-Users] map bounds or projection problem?

2009-08-25 Thread eoinyp
Hi list, I am just getting started with openlayers and geoserver. I have two simple wms layers being served by geoserver: a layer of US states, and a layer of town boundaries in Massachusetts. Each of the layers display fine on their own. Showing the full extent of the mapped area. When I put

Re: [OpenLayers-Users] Problem WFS-T add new geometry (point)

2009-08-25 Thread Jerome Freyre
Hi Jimmy, Can you show us your code? Personnally, I use WFS-T like that : var saveStrategy = new OpenLayers.Strategy.Save({ callback: function() { alert('feature saved'); } }); wfs2 = new OpenLayers.Layer.Vector( 'lumin', { strategies: [

[OpenLayers-Users] How to handle a GeometryCollection Feature

2009-08-25 Thread Max Weidemann
Hi everybody my problem is that i dont know how i could at a new geometry to an GeometryCollection-Feature wich exists in an Vector layer. i have added the collection to the layer in a way like this: var gc_geometry = new OpenLayers.Geometry.Collection( [ new

[OpenLayers-Users] preload layers

2009-08-25 Thread Rahn Hanno (rahn)
Hello list, I have a little tricky question. Perhaps somebody can help me. I show a layer in my map. This layer shows polygons at a specific time. Now you can click a button and the next time will be shown in the map. You can change the time back of course, too. In my solution there are

[OpenLayers-Users] Problem wfs-t update (geoserver)

2009-08-25 Thread Jimmy Aumard
Hi list, I try to update point on vector layer but it's doesn't work. My request: wfs:Transaction xmlns:wfs=http://www.opengis.net/wfs; service=WFS version=1.1.0 xsi:schemaLocation =http://www.opengis.net/wfs http://schemas.opengis.net/wfs/1.1.0/wfs.xsd; xmlns:xsi=http://www.w3.org

Re: [OpenLayers-Users] How to handle a GeometryCollection Feature

2009-08-25 Thread Eric Lemoine
On Tue, Aug 25, 2009 at 3:00 PM, Max Weidemannmax.weidem...@freenet.de wrote: Hi everybody my problem is that i dont know how i could at a new geometry to an GeometryCollection-Feature wich exists in an Vector layer. i have added the collection to the layer in a way like this: var