Re: [OpenLayers-Users] Draw line vector, with points..

2009-12-16 Thread JuKiM
Hi, And how can I modify the PostGIS SQL? I don't know how/where I can do it.. Thanks! 2009/12/10 David Fawcett david.fawc...@gmail.com I am sure that in the context of WFS-T it is more complicated, but would it work if you used a linestring layer and modified your PostGIS SQL to wrap your

[OpenLayers-Users] modification with polygon style

2009-12-16 Thread Haftish 21
I got a WFS-T that operates on a polygon feature. Without a style rule everything goes right. But, with style defined for it, the nodes to modify the geometry don't show up. Any clue?? ___ Users mailing list Users@openlayers.org

Re: [OpenLayers-Users] Wfs character set

2009-12-16 Thread ibrahimsaricicek
Hi; I have two different databases. and some of my wfs objects come from a utf8 and and others latin5 databases. is it possible to show true type characters in this situation??? ibrahimsaricicek wrote: Hi all; I'm using Postgis tables in Latin5 character encoding. Does Openlayers need

[OpenLayers-Users] WMS layer: Limit on lat/long

2009-12-16 Thread Kwong Hu Kiu
Hi, I would like to prevent Openlayers from requesting WMS data when it goes pass certain range(lat,long). That means stop asking WMS servers for map data. Is there a way i can do that? Currently, my server cannot generate wms data once it reaches a certain range. Thanks

Re: [OpenLayers-Users] WMS layer: Limit on lat/long

2009-12-16 Thread Ivan Grcic
Hi, define maxExtent(bounds) for you layer, and make sure displayOutsideMaxExtent:true is set (default value) cheers On Wed, Dec 16, 2009 at 2:10 PM, Kwong Hu Kiu kwon...@hotmail.com wrote: Hi, I would like to prevent Openlayers from requesting WMS data when it goes pass certain

Re: [OpenLayers-Users] Wfs character set

2009-12-16 Thread Andreas Hocevar
On 2009-12-16 10:16, ibrahimsaricicek wrote: I have two different databases. and some of my wfs objects come from a utf8 and and others latin5 databases. is it possible to show true type characters in this situation??? I don't see how character encoding and true type are related. But one

Re: [OpenLayers-Users] modification with polygon style

2009-12-16 Thread Andreas Hocevar
Most likely your styles don't have a pointRadius property. It is always best to extend one of the default styles in OpenLayers.Feature.Vector.style to avoid such problems. Regards, Andreas. On 2009-12-16 10:13, Haftish 21 wrote: I got a WFS-T that operates on a polygon feature. Without a style

[OpenLayers-Users] ModifyFeatureControl - vertices styling

2009-12-16 Thread Alexandre Dube
Hi, Is there a simple way (without changing the code) to have a specific style for the vertices when modifying a feature with the ModifyFeatureControl ? There's such a possibility for the virtualVertices already, but doesn't seem to have any for the normal ones : they always have the

Re: [OpenLayers-Users] ModifyFeatureControl - vertices styling

2009-12-16 Thread soatley
I just went through this myself. In my case, I was already taking advantage of using vector styling context (similar to this example: http://www.openlayers.org/dev/examples/styles-context.html http://www.openlayers.org/dev/examples/styles-context.html ) I found that the points that are used

Re: [OpenLayers-Users] ModifyFeatureControl - vertices styling

2009-12-16 Thread Alexandre Dube
soatley wrote: That is the code that styles all my vectors. Depending on the vector type, I style it differently. You can see how in the getVectorType it checks to see if _sketch is not undefined (meaning it is assigned) and if so, it must be a modify vertex. Hope that helps! Yep,

[OpenLayers-Users] save Filter

2009-12-16 Thread Jimmy Aumard
Hello, I use filter like that: var filter= new OpenLayers.Filter.FeatureId({ fids: [franchises.5] }); var filter_1_1 = new OpenLayers.Format.Filter({version: 1.1.0}); var xml = new OpenLayers.Format.XML(); xml.write(filter_1_1.write(filter)); This give me :ogc:Filter

[OpenLayers-Users] Superimpose an image layer to another layer

2009-12-16 Thread Stefano Piazza
Hello guys, I'm trying to enhance the information of a Layer.Google element with an Image Layer. The goal is to display the project of a building over the google layer. I thought the best way to do it was using a Layer.Image, but AFAICS when the image is visible all the space left free from the

Re: [OpenLayers-Users] save Filter

2009-12-16 Thread Andreas Hocevar
On 2009-12-16 16:42, Jimmy Aumard wrote: I use filter like that: var filter= new OpenLayers.Filter.FeatureId({ fids: [franchises.5] }); var filter_1_1 = new OpenLayers.Format.Filter({version: 1.1.0}); var xml = new OpenLayers.Format.XML(); xml.write(filter_1_1.write(filter));