Re: [OpenLayers-Users] wfs markers without the redraw?

2008-08-13 Thread Eric Lemoine
On Wed, Aug 13, 2008 at 6:51 AM, Brenningmeyer, Todd [EMAIL PROTECTED] wrote: Thanks Eric. I'm including the html page. Hopefully this will help. I'm adding two WMS layers and then would like to add the markers layer to symbolize Greek villages that we surveyed several years ago. Thanks

Re: [OpenLayers-Users] mousedown on marker and editingtoolbar

2008-08-13 Thread Walter Lorenzetti
Eric Lemoine ha scritto: I cant check right now but i thought only the temporary layer's z-index was changed. May be completely wrong here. Eric 2008/8/12, Christopher Schmidt [EMAIL PROTECTED]: On Tue, Aug 12, 2008 at 05:55:41PM +0200, Eric Lemoine wrote: Someone will correct me

Re: [OpenLayers-Users] Not change the size o polygons with zoom change

2008-08-13 Thread Andreas Hocevar
Hi, On Tue, Aug 12, 2008 at 11:16 AM, Jose A. C. [EMAIL PROTECTED] wrote: Hi! I'm trying to rotate the symbols around their own center but I canĀ“t; they rotate around another point, How did you rotate your polygons? If you just use style.rotation, the symbols will rotate around their own

Re: [OpenLayers-Users] CQL queries with WFS

2008-08-13 Thread Eric Lemoine
On Wed, Aug 13, 2008 at 11:49 AM, Andreas Hocevar [EMAIL PROTECTED] wrote: Hi, Since CQL_FILTER is not part to the WMS spec, the best way is to add the filter to the WMS url, e.g. var layer=new OpenLayers.Layer.WMS(cql, http://your-server/wms?CQL_FILTER=foo3, params, options); Todd's

Re: [OpenLayers-Users] CQL queries with WFS

2008-08-13 Thread Andreas Hocevar
Hi, On Wed, Aug 13, 2008 at 2:08 PM, Eric Lemoine [EMAIL PROTECTED] wrote: On Wed, Aug 13, 2008 at 11:49 AM, Andreas Hocevar [EMAIL PROTECTED] wrote: Hi, Since CQL_FILTER is not part to the WMS spec, the best way is to add the filter to the WMS url, e.g. var layer=new

Re: [OpenLayers-Users] wfs markers without the redraw?

2008-08-13 Thread Christopher Schmidt
On Wed, Aug 13, 2008 at 08:42:43AM +0200, Eric Lemoine wrote: On Wed, Aug 13, 2008 at 6:51 AM, Brenningmeyer, Todd gmlLayer = new OpenLayers.Layer.GML( villages, http://localhost/cgi-bin/mapserv.exe,{ map:../htdocs/amap/sites_wfs.map,

Re: [OpenLayers-Users] free base maps

2008-08-13 Thread Christopher Schmidt
On Tue, Aug 12, 2008 at 11:34:15PM -0400, Bilge Tutak wrote: Thanks everybody, Is there any code examples or actual URL I can use for these maps? I also found openstreetmaps. Is this also a free option? It does not have satellite, but has pretty nice topo maps. spherical-mercator.html:

Re: [OpenLayers-Users] wfs markers without the redraw?

2008-08-13 Thread Eric Lemoine
On Wed, Aug 13, 2008 at 2:58 PM, Christopher Schmidt [EMAIL PROTECTED] wrote: In OpenLayers, the options object, when passed, will override all the layer's internal settings for any named properties. Specifically, in this case, the 'map' property passed in will override the 'map' property on

[OpenLayers-Users] XML, icon and offset

2008-08-13 Thread Guillaume Sueur
Hi list, Is there a way to offset properly the popup anchor on a vector layer ? Tried to do it be displacing the lonlat for popup but as I can't know in which direction to displace it, it's not clean. Thanks -- Guillaume ___ Users mailing list

[OpenLayers-Users] Extern Tiles with World Mercator 54004

2008-08-13 Thread fmatz
Hello, how can I integrate a extern TileMapLayer with the Map Projection World Mercator 54004 in OpenLayers ? Many thanks, Friedhold Jetzt komfortabel bei Arcor-Digital TV einsteigen: Mehr Happy Ends, mehr Herzschmerz, mehr Fernsehen! Erleben Sie 50 digitale TV Programme und optional 60

Re: [OpenLayers-Users] Map Layer Requirements

2008-08-13 Thread Eric Lemoine
Hi Bill. You need your vector layer be a base layer. By default vector layers aren't base layers so you need an explicit option for this at creation time: new OpenLayers.Layer.Vector(vector, {isBaseLayer: false}). Hope i am correct and this is helping :-) Eric 2008/8/13, Bill Thoen [EMAIL

Re: [OpenLayers-Users] Seams in my imagery

2008-08-13 Thread Matthew Atkins
You neglected to mention that TileCache was involved. You should drop the gutter, and simply use metaTile=yes, metaSize=1,1, and metaBuffer=10 to replicate a 10px buffer. With these settings in TileCache will the python script do essentially the same thing as the gutter property (request a

Re: [OpenLayers-Users] wfs markers without the redraw?

2008-08-13 Thread Brenningmeyer, Todd
Chris and Eric, Thanks for your help. It works and does not refresh the points when I zoom in! I used the following and the points drew without a problem. Thanks again, Todd gmlLayer = new OpenLayers.Layer.GML( villages,[

Re: [OpenLayers-Users] OL internal (vector) feature organisation

2008-08-13 Thread Lars Lingner
Andreas Hocevar schrieb: Hi, On Tue, Aug 12, 2008 at 2:34 PM, Lars Lingner [EMAIL PROTECTED] wrote: If I understand the comments on above ticket right, than would be a proper solution to reorganize the object in one svg tag, like: svg path class=layer1 id=path1/ path class=layer2

Re: [OpenLayers-Users] Seams in my imagery

2008-08-13 Thread Christopher Schmidt
On Wed, Aug 13, 2008 at 03:58:13PM -0400, Matthew Atkins wrote: You neglected to mention that TileCache was involved. You should drop the gutter, and simply use metaTile=yes, metaSize=1,1, and metaBuffer=10 to replicate a 10px buffer. With these settings in TileCache will the python

Re: [OpenLayers-Users] Map Layer Requirements

2008-08-13 Thread Bill Thoen
Thanks. I had to change the false to true, and then it worked. Eric Lemoine wrote: Hi Bill. You need your vector layer be a base layer. By default vector layers aren't base layers so you need an explicit option for this at creation time: new OpenLayers.Layer.Vector(vector, {isBaseLayer:

Re: [OpenLayers-Users] Loading WMC layers at overlays?

2008-08-13 Thread jvanulde
Thanks Bart that worked. Below is the code in case someone else can use it: -- OpenLayers.IMAGE_RELOAD_ATTEMPTS = 2; OpenLayers.Util.onImageLoadErrorColor = transparent; var layerOptions = { isBaseLayer: false,

[OpenLayers-Users] Point Track Markers

2008-08-13 Thread David Calle
Hi guys... So, I need to use the example: http://www.openlayers.org/dev/examples/point-track-markers.html But my points comes from postgres (table with geometry)... on this example the data comes from a xml file... Please help me... .= ) Thanks

[OpenLayers-Users] Zoom to WMC extent

2008-08-13 Thread jvanulde
I thought this would be simple and probably is, but the solution is evading me. I have loaded a WMC into a map but the image is centered in the map window with lots of white space. I would like the map to zoom to the context extent. Any ideas on how this can be done? I have tried setting the

[OpenLayers-Users] Problems while using proxy under Windows OS.

2008-08-13 Thread lorkyo
Hi , I have came across a problem in using the proxy under Windows. I use tomcat 5.5, and the cofiguration of cgi in web.xml is like this: servlet servlet-namecgi/servlet-name servlet-classorg.apache.catalina.servlets.CGIServlet/servlet-class init-param

Re: [OpenLayers-Users] Map Layer Requirements

2008-08-13 Thread Eric Lemoine
Obviously :-) 2008/8/14, Bill Thoen [EMAIL PROTECTED]: Thanks. I had to change the false to true, and then it worked. Eric Lemoine wrote: Hi Bill. You need your vector layer be a base layer. By default vector layers aren't base layers so you need an explicit option for this at creation

Re: [OpenLayers-Users] Zoom to WMC extent

2008-08-13 Thread bartvde
Hi Joost, it should be as simple as: map.zoomToExtent(format.context.bounds); Best regards, Bart I thought this would be simple and probably is, but the solution is evading me. I have loaded a WMC into a map but the image is centered in the map window with lots of white space. I would