[Mapbuilder-devel] Editing Navigation web page

2007-11-08 Thread Cameron Shorter
I can't seem to edit the page http://communitymapbuilder.org/display/MAP/Navigation . (I'm wanted to add a "Commercial Support" page as discussed in a meeting earlier) Does anyone else have this problem as well? -- Cameron Shorter Geospatial Systems Architect Tel: +61 (0)2 8570 5050 Mob: +61 (

Re: [Mapbuilder-devel] Team meeting

2007-11-08 Thread Cameron Shorter
Sorry for belated response. Some comments for the issues listed below. Of note, Roald will be merging the Lisasoft sandbox back into the mapbuilder trunk soon, and will raise any issues that we have found on the way. Andreas Hocevar wrote: > Hi, > > in today's team meeting, I would like to disc

Re: [Mapbuilder-devel] refresh behaviour of MapPaneOL

2007-11-08 Thread Cameron Shorter
Andreas, your concerns are valid. We should not have SLD special cases in a general widget like MapPaneOL. I assume the sld specific code was introduced during the development of the SLD demo by Olivier and co. Since it looks like the SLD functionality is moving toward OpenLayers it may be appr

Re: [Mapbuilder-devel] refresh behaviour of MapPaneOL

2007-11-08 Thread Andreas Hocevar
Hi, On Nov 9, 2007 12:10 AM, Cameron Shorter <[EMAIL PROTECTED]> wrote: > Looking at your code snippet, (and not the code), I'm guessing that the > clearWidget2 will remove the contents of the widget before redrawing, > which will probably cause an undesirable flicker in most circumstances. Mayb

Re: [Mapbuilder-devel] refresh behaviour of MapPaneOL

2007-11-08 Thread Cameron Shorter
Looking at your code snippet, (and not the code), I'm guessing that the clearWidget2 will remove the contents of the widget before redrawing, which will probably cause an undesirable flicker in most circumstances. Andreas Hocevar wrote: > Hi, > > does anybody know the reason why we do the follo

[Mapbuilder-devel] refresh behaviour of MapPaneOL

2007-11-08 Thread Andreas Hocevar
Hi, does anybody know the reason why we do the following in lib/widget/MapPaneOL.js? 152 if(!objRef.model.map || refresh=="sld"){ 153 154if(refresh=="sld") { 155 objRef.clearWidget2(objRef); 156} IMO the refresh event should always re-parse the model, or am I missing something here