Re: [OpenLayers-Users] OpenLayers Documentation mailing list?

2008-04-09 Thread Christian López Espínola
Hi Tara, On Wed, Apr 9, 2008 at 9:35 AM, Tara Athan [EMAIL PROTECTED] wrote: Where does the discussion for the OpenLayers Documentation Team occur? I don't see a Documentation Mailing List on the website. Discussion about documentation takes place on any of the channels that we have, dev or

[OpenLayers-Users] [Feature style] Dashed border style

2008-04-09 Thread Julien JEUDY
Dear all, I would like to modify the style of a feature to a dashed border style. I try the following code, but it doesn't work. Can you please help me to solve this problem? Var my_style = { strokeColor : blue , strokeWidth : 1, fillColor : blue ,

Re: [OpenLayers-Users] Strange behaviour after panning

2008-04-09 Thread Christopher Schmidt
On Tue, Apr 08, 2008 at 07:28:24PM -0700, Pedro Simonetti wrote: After some investigations, I found how to fix it. I've changed the piece of the code where it calculates the coordinates, from: var lonlat = map.getLonLatFromLayerPx(evt.xy); To: var lonlat =

Re: [OpenLayers-Users] DEM browsers in OpenLayers

2008-04-09 Thread Christopher Schmidt
On Wed, Apr 09, 2008 at 03:50:56AM -0700, bwoodall wrote: Well, I needed an excuse to play with the Control.Hover, which is the basis for http://wardrobe.dhs.org/jrf/index.html. The code is rather crude, but it works on Debian and FF (no performance features like multi-urls or TC so the

[OpenLayers-Users] 2.5 Firefox and Framecloud autoSize

2008-04-09 Thread David Martin
Hi, I have been working today on FramedCloud and have noticed that is works perfectly in IE7 and not in FF2. It appears that when text wraps FF does not resize the box to the correct size. In fact even when it does not have test wrap the bottom line of text if FF2 is chopped off. I have

Re: [OpenLayers-Users] Busy Cursor

2008-04-09 Thread Bart van den Eijnden (OSGIS)
Yes, it's not in the standard library, I am hoping it can be an addin soon. See also the Wiki: http://trac.openlayers.org/wiki/Addins/LoadingPanel You can add the following in a script tag after the OpenLayers.js script tag:

Re: [OpenLayers-Users] 2.5 Firefox and Framecloud autoSize

2008-04-09 Thread Christopher Schmidt
On Wed, Apr 09, 2008 at 07:37:11PM +0800, David Martin wrote: Hi, I have been working today on FramedCloud and have noticed that is works perfectly in IE7 and not in FF2. It appears that when text wraps FF does not resize the box to the correct size. In fact even when it does not have

Re: [OpenLayers-Users] DEM browsers in OpenLayers

2008-04-09 Thread John R. Frank
On Wed, 9 Apr 2008, bwoodall wrote: Well, I needed an excuse to play with the Control.Hover, which is the basis for http://wardrobe.dhs.org/jrf/index.html. The code is rather crude, but it works on Debian and FF (no performance features like multi-urls or TC so the server might be slow ).

Re: [OpenLayers-Users] 2.5 Firefox and Framecloud autoSize

2008-04-09 Thread David Martin
Thanks Christopher, I did as you suggested and it still is not 100%. I did the h4 override and even took the h4 out and used plain text however when the title (first line) and address (second line) is long causing wrapping it still has the last line outside the popup. I have hard coded the

Re: [OpenLayers-Users] Busy Cursor

2008-04-09 Thread Linda Rawson
Thank you! On Wed, Apr 9, 2008 at 5:48 AM, Bart van den Eijnden (OSGIS) [EMAIL PROTECTED] wrote: Yes, it's not in the standard library, I am hoping it can be an addin soon. See also the Wiki: http://trac.openlayers.org/wiki/Addins/LoadingPanel You can add the following in a script tag after

[OpenLayers-Users] Vector select styles

2008-04-09 Thread Bjorn Sandvik
Hi, I'm having a problem with hover styles using OpenLayers 2.6-rc1: http://www.thematicmapping.org/experiments/openlayers/propsymbols.html When you hover on of the circles the size is not preserved. Is there a way to define the default and select styles to be the same? Bjorn -- The

[OpenLayers-Users] Can Openlayers read a GML from a webservice?

2008-04-09 Thread Carlos Pinto
Hi all, sorry if it is a stupid question. But unfortunately I can't install mapserver because the IT department don't allow. So the solution I have found is make the query to the database and write a GML file. After that I pass the URL of the file to OpenLayers. But I thought, maybe instead of

Re: [OpenLayers-Users] Vector select styles

2008-04-09 Thread Bjorn Sandvik
Thanks for your response. It works: http://www.thematicmapping.org/experiments/openlayers/propsymbols.html Bjorn http://blog.thematicmapping.org Christopher Schmidt wrote: On Wed, Apr 09, 2008 at 04:55:35PM +0100, Bjorn Sandvik wrote: Hi, I'm having a problem with hover styles using

Re: [OpenLayers-Users] [Feature style] Dashed border style

2008-04-09 Thread MilesTogoe
Pierre GIRAUD wrote: Unfortunately, I'm pretty sure that this is something OpenLayers will never address. The main reason is that OpenLayers vector renderers rely on SVG for Firefox/Safari browsers and VML for InternetExplorer. I had a look into it a while ago, and, as far as I know, none of

[OpenLayers-Users] Turn off BaseLayer?

2008-04-09 Thread djs7743
Is it possible in OL to turn off the BaseLayer? In other words I'd like all my layers to be overlays. Looking at it another way, this would allow me to turn off all layers and just have a blank map. I'd also like to have the "Base Layer" portion of the LayerSwitcher disappear if all my layers

Re: [OpenLayers-Users] Strange behaviour after panning

2008-04-09 Thread Pedro Simonetti Garcia
After some investigations, I found how to fix it. I've changed the piece of the code where it calculates the coordinates, from: var lonlat = map.getLonLatFromLayerPx(evt.xy); To: var lonlat = map.getLonLatFromViewPortPx(evt.xy); Now it works fine. I'm just

Re: [OpenLayers-Users] Strange behaviour after panning

2008-04-09 Thread Christopher Schmidt
On Wed, Apr 09, 2008 at 08:51:32PM -0300, Pedro Simonetti Garcia wrote: In any case: We providedd getLonLatFromPixel as the main 'API' property so that people wouldn't have to use a funky-named property: it's a wrapper around getLonLatFromViewPortPx. Just a suggestion. Considering that

Re: [OpenLayers-Users] Turn off BaseLayer?

2008-04-09 Thread Christopher Schmidt
On Wed, Apr 09, 2008 at 10:54:05PM +, [EMAIL PROTECTED] wrote: Is it possible in OL to turn off the BaseLayer? In other words I'd like all my layers to be overlays. Looking at it another way, this would allow me to turn off all layers and just have a blank map. I'd also like to have the

Re: [OpenLayers-Users] Strange behaviour after panning

2008-04-09 Thread Pedro Simonetti Garcia
In any case: We providedd getLonLatFromPixel as the main 'API' property so that people wouldn't have to use a funky-named property: it's a wrapper around getLonLatFromViewPortPx. Just a suggestion. Considering that the getLonLatFromPixel is a wrapper around

[OpenLayers-Users] 2.6 Trunk Spherical Mercator with Overview Map

2008-04-09 Thread Linda Rawson
Ok. Another thing I was really hoping for that I cannot get to work. An overviewmap with sperical mercator. I have last nights trunk. What am I doing wrong? html head titleOverview Map Example/title link rel=stylesheet href=../theme/default/style.css type=text/css /