Re: [OpenLayers-Users] wfs stylemap example?

2008-07-30 Thread Ivan Grcic
"Do you know a way to just change the color of a feature on "hover" without selecting it ? That would be useful.." Hi Alexandre, I was wondering about the same funcionality here: http://openlayers.org/pipermail/dev/2008-July/003183.html but with featureSelect control thats not possible...I

Re: [OpenLayers-Users] Browser back and forward button

2008-07-30 Thread Matthew Doyle
Many thanks for your responses and musings. I will have a look at the RSH solution, thank you. Regards, Matt Paul Spencer-5 wrote: > > I've used this before in other applications with some success: > > http://code.google.com/p/reallysimplehistory/ > > Cheers > > Paul > > On 30-Jul-08, at

Re: [OpenLayers-Users] buffering example using OL?

2008-07-30 Thread Mike Quentel
Christopher, Thank you--fantastic demos of spatial operations--very impressive. These links below provide information on buffering theory... presentation on buffering in GIS: http://www.sli.unimelb.edu.au/gisweb/BuffersModule/BuffSelect.htm paper on buffering theory: http://www-users.cs.umn.e

Re: [OpenLayers-Users] buffering example using OL?

2008-07-30 Thread Christopher Schmidt
On Wed, Jul 30, 2008 at 06:15:25PM -0400, Mike Quentel wrote: > Anyone have an example of buffering (ie, GIS spatial analysis buffer of > features) using OL? Server Side buffering, using WPServer/GDAL: http://crschmidt.net/mapping/wpserverdemo/ Tim Schaub has done some work on a 'geops' librar

Re: [OpenLayers-Users] wfs stylemap example?

2008-07-30 Thread Christopher Schmidt
On Wed, Jul 30, 2008 at 03:33:00PM -0400, Alexandre Dube wrote: > Hi Arnd, > > Thanks for very much for your tips. That works just fine ! > > But for my little application it's not really useful. Do you know a > way to just change the color of a feature on "hover" without selecting >

Re: [OpenLayers-Users] Dragging a DOM element onto an OpenLayers map

2008-07-30 Thread Christopher Schmidt
On Wed, Jul 30, 2008 at 03:03:13PM -0400, Kevin Marsh wrote: > Brad, > > Thanks... I started fiddling with jQueruy/UI draggable stuff (which > was a lot of fun, seeing as how their doc site is/was down).. and it's > relatively straight forward. Here's some code I came up with: > >http://g

[OpenLayers-Users] buffering example using OL?

2008-07-30 Thread Mike Quentel
Anyone have an example of buffering (ie, GIS spatial analysis buffer of features) using OL? Do you have suggestions of where I can find an algorithm for buffering a given geometry (point, line, poly)? Many thanks. Mike Quentel ---

Re: [OpenLayers-Users] wfs stylemap example?

2008-07-30 Thread Arnd Wippermann
Hi Alexandre, Do you mean, when you hover over a feature, then it should change its color to show it is selected? That is the normal behaviour. Or do you mean, when you select with hover over a feature, that you want to change permanent the style for this feature? Then you can probaply use somet

Re: [OpenLayers-Users] wfs stylemap example?

2008-07-30 Thread Alexandre Dube
Hi Arnd, Thanks for very much for your tips. That works just fine ! But for my little application it's not really useful. Do you know a way to just change the color of a feature on "hover" without selecting it ? That would be useful for me because I have lines as vector features and

Re: [OpenLayers-Users] Dragging a DOM element onto an OpenLayers map

2008-07-30 Thread Kevin Marsh
Brad, Thanks... I started fiddling with jQueruy/UI draggable stuff (which was a lot of fun, seeing as how their doc site is/was down).. and it's relatively straight forward. Here's some code I came up with: http://gist.github.com/3304 I figured out the z-index after about 20 minutes of ba

Re: [OpenLayers-Users] wfs stylemap example?

2008-07-30 Thread Arnd Wippermann
Hi Alexandre, i have also tried your example and get it working for me. Also for the 'select' rule mentioned by Todd, but on the modifyFeature control instead on the selectFeature control. I don't know why. Thanks for the example source. To select a feature with hover you can set 'hover' to true

Re: [OpenLayers-Users] Including prototype

2008-07-30 Thread Erik Uzureau
tim schaub has volunteered to look into this. hold tight, and thanks for the bug reports. erik On Wed, Jul 30, 2008 at 10:30 AM, Christopher Schmidt < [EMAIL PROTECTED]> wrote: > On Wed, Jul 30, 2008 at 04:13:24PM +0200, Andrew de Klerk wrote: > > When we incorporated Jquery within an openlayers

Re: [OpenLayers-Users] Including prototype

2008-07-30 Thread Christopher Schmidt
On Wed, Jul 30, 2008 at 04:13:24PM +0200, Andrew de Klerk wrote: > When we incorporated Jquery within an openlayers application the $ was > conflicting with Openlayers and we had to do the following: Andrew, http://trac.openlayers.org/ticket/1391 is a ticket describing this, which has been waitin

Re: [OpenLayers-Users] Including prototype

2008-07-30 Thread Andrew de Klerk
When we incorporated Jquery within an openlayers application the $ was conflicting with Openlayers and we had to do the following: JQ=jQuery.noConflict(); $=null; All Jquery calls would then be called using JQ instead of $ I imagine you will be having the same

Re: [OpenLayers-Users] wfs stylemap example?

2008-07-30 Thread Alexandre Dube
Hi Todd, You're right. That would be the good way to set a color to a selected feature. But first I suggest you to pick an other color than blue because it is the default color for "select". Second, you actually have to select it, like with a selectFeature or modifyFeature control. By c

Re: [OpenLayers-Users] Including prototype

2008-07-30 Thread Christopher Schmidt
On Wed, Jul 30, 2008 at 03:14:12PM +0200, Carlos Pinto wrote: > Hi all, > > I had my webpage with openlayers and it was working fine. But when I > included the lines: > > > > > my map stops working. Does anybody know why? What version of OpenLayers are you using? DO you include Prototype befo

Re: [OpenLayers-Users] Browser back and forward button

2008-07-30 Thread Paul Spencer
I've used this before in other applications with some success: http://code.google.com/p/reallysimplehistory/ Cheers Paul On 30-Jul-08, at 8:42 AM, Christopher Schmidt wrote: > On Tue, Jul 29, 2008 at 10:19:29PM -0700, Matthew Doyle wrote: >> >> Hi OpenLayers Users, >> >> My client has a need t

[OpenLayers-Users] Including prototype

2008-07-30 Thread Carlos Pinto
Hi all, I had my webpage with openlayers and it was working fine. But when I included the lines: my map stops working. Does anybody know why? Thank you all. Carlos ___ Users mailing list Users@openlayers.org http://openlayers.org/mailman/listinfo/u

Re: [OpenLayers-Users] Browser back and forward button

2008-07-30 Thread Christopher Schmidt
On Tue, Jul 29, 2008 at 10:19:29PM -0700, Matthew Doyle wrote: > > Hi OpenLayers Users, > > My client has a need to place control on the users browser back and forward > buttons. Simply put, when he does any sort of action like zoom, pan, switch > a layer on, etc. he always assumes that the back

Re: [OpenLayers-Users] Browser back and forward button

2008-07-30 Thread Christian López Espínola
Hi Matthew, It isn't integrated with the browser, but a good start if you want to implent this is the NavigationHistory control. http://dev.openlayers.org/releases/OpenLayers-2.6/doc/apidocs/files/OpenLayers/Control/NavigationHistory-js.html Example here: http://openlayers.org/dev/examples/navig