<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content=text/html;charset=iso-8859-15>
<META content="MSHTML 6.00.6002.18357" name=GENERATOR></HEAD>
<BODY id=MailContainerBody 
style="PADDING-RIGHT: 10px; PADDING-LEFT: 10px; PADDING-TOP: 15px" text=#333333 
bgColor=#ffffff leftMargin=0 topMargin=0 CanvasTabStop="true" 
name="Compose message area">
<DIV><FONT face=Arial color=#000000 size=2>Yes GeoExt can do this all 
automatically. Instead of using nodeType:'gx_layer' use should simply use 
'gx_baselayercontainer'. Define the text property and the children are 
auto-loaded with just base layers and they have radio buttons instead of 
checkboxes.</FONT></DIV>
<DIV><FONT face=Arial color=#000000 size=2>Make sure to define your mapPanel 
FIRST</FONT></DIV>
<DIV><FONT face=Arial color=#000000 size=2>So your layerList array would be more 
like this:</FONT></DIV>
<DIV>var layerList =[{&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; 
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; text: 'Background 
Layers',<BR>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
&nbsp;&nbsp;&nbsp; leaf: false,&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; 
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; expanded: true,</DIV>
<DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
nodeType:'gx_baselayercontainer'},</DIV>
<DIV>... other non-base layer nodes or a nodeType of 'gx_overlaylayercontainer' 
to load all non-base layers with checkboxes</DIV>
<DIV>]</DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial color=#000000 size=2>You should see the examples and doc 
on the GeoExt website for more info. Specifically:</FONT></DIV>
<DIV><A 
href="http://api.geoext.org/1.0/examples/tree.html">http://api.geoext.org/1.0/examples/tree.html</A></DIV>
<DIV><FONT face=Arial color=#000000 size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial color=#000000 size=2>Ignore the JSON.write / 
read&nbsp;stuff, that is there so that people can edit the layer tree in the 
example.</FONT></DIV>
<DIV><FONT face=Arial color=#000000 size=2>You want the stuff inside the write 
function.</FONT></DIV>
<DIV><FONT face=Arial color=#000000 size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial color=#000000 size=2>Matt Priour</FONT></DIV>
<DIV><FONT face=Arial color=#000000 size=2></FONT>&nbsp;</DIV>
<DIV style="FONT: 10pt Tahoma">
<DIV><FONT face=Arial color=#000000></FONT><BR></DIV>
<DIV style="BACKGROUND: #f5f5f5">
<DIV style="font-color: black"><B>From:</B> <A 
title="mailto:christian.gadge@ufz.de&#10;CTRL + Click to follow link" 
href="mailto:christian.gadge@ufz.de">Christian Gadge</A> </DIV>
<DIV><B>Sent:</B> Thursday, February 24, 2011 9:30 AM</DIV>
<DIV><B>To:</B> <A 
title="mailto:mpriour@kestrelcomputer.com&#10;CTRL + Click to follow link" 
href="mailto:mpriour@kestrelcomputer.com">Matt Priour</A> </DIV>
<DIV><B>Cc:</B> <A title=users@geoext.org 
href="mailto:users@geoext.org">users@geoext.org</A> </DIV>
<DIV><B>Subject:</B> Re: [Users] How to add array of layers / LayerStore to 
map</DIV></DIV></DIV>
<DIV><FONT face=Arial color=#000000 size=2></FONT><BR></DIV>Thank you Matt. This 
works.<BR>Yes, I tried to use the TreePanel layers to be "added" to map. I have 
checkboxes for all layers.<BR>Using an array of all available layers, all these 
layers are now visible within the map. But there should be only one layer 
visible at time.<BR><BR>So in that case I have to define a 
GeoExt.data.LayerStore of "checked" layers to be drawn in map? Can this be done 
automatically? Now all layers are visible and I have to uncheck them 
first.<BR><BR>regards,<BR>Christian<BR><BR>Am 24.02.2011 16:16, schrieb Matt 
Priour: 
<BLOCKQUOTE cite=mid:60776E50E3654300973FD3CDE88FE970@Lenovo type="cite">
  <META content="MSHTML 6.00.6002.18357" name=GENERATOR>
  <DIV><FONT face=Arial color=#000000 size=2>first you don't need 
  parenthesis</FONT></DIV>
  <DIV><FONT face=Arial color=#000000 size=2>second I mis-typed that config 
  below. And I mis-read what you wrote.</FONT></DIV>
  <DIV><FONT face=Arial color=#000000 size=2>your variable layerList is a 
  portion of TreePanel config. You can't use that as the layers parameter in 
  MapPanel. The layers parameter is ONLY valid with a simple array 
  of&nbsp;OpenLayers layers OR a GeoExt.data.LayerStore</FONT></DIV>
  <DIV><FONT face=Arial color=#000000 size=2>I was thinking that you had 
  something like:</FONT></DIV>
  <DIV><FONT face=Arial color=#000000 size=2>var layerlist = [<FONT 
  face="Courier New" size=3>OLwms, USGSwms, NASAwms]</FONT></FONT></DIV>
  <DIV><FONT face="Courier New" color=#000000>in that case the layers parameter 
  should read:</FONT></DIV>
  <DIV><FONT face=Arial color=#000000 size=2>...</FONT></DIV>
  <DIV><FONT face=Arial color=#000000 size=2>layers:layerlist</FONT></DIV>
  <DIV><FONT face=Arial color=#000000 size=2>...</FONT></DIV>
  <DIV>&nbsp;</DIV>
  <DIV><FONT face=Arial color=#000000 size=2>layerlist is already an array so 
  you don't need to enclose it in [ ]. That makes it an array of an array, which 
  is not going to be read correctly by the MapPanel constructor</FONT></DIV>
  <DIV>&nbsp;</DIV>
  <DIV><FONT face=Arial color=#000000 size=2>Sorry for the 
confusion</FONT></DIV>
  <DIV>&nbsp;</DIV>
  <DIV><FONT face=Arial color=#000000 size=2>Matt Priour</FONT></DIV>
  <DIV>&nbsp;</DIV>
  <DIV>&nbsp;</DIV>
  <DIV style="FONT: 10pt Tahoma">
  <DIV><BR></DIV>
  <DIV style="BACKGROUND: rgb(245,245,245)">
  <DIV><B>From:</B> <A title=christian.gadge@ufz.de 
  href="mailto:christian.gadge@ufz.de" moz-do-not-send="true">Christian 
  Gadge</A> </DIV>
  <DIV><B>Sent:</B> Thursday, February 24, 2011 8:47 AM</DIV>
  <DIV><B>To:</B> <A title=users@geoext.org href="mailto:users@geoext.org" 
  moz-do-not-send="true">users@geoext.org</A> </DIV>
  <DIV><B>Subject:</B> Re: [Users] How to add array of layers / LayerStore to 
  map</DIV></DIV></DIV>
  <DIV><BR></DIV><FONT face="Helvetica, Arial, sans-serif">ok... when I try to 
  add some layers like</FONT><BR><FONT 
  face="Courier New, Courier, monospace">layers: ([OLwms, USGSwms, NASAwms]) 
  <FONT face="Helvetica, Arial, sans-serif">it works fine. But using<FONT 
  face="Courier New, Courier,&#13;&#10;&#13;&#10;            monospace"> 
  layers:([layerlist])<FONT 
  face="Helvetica,&#13;&#10;              Arial,&#13;&#10; sans-serif"> it 
  doesn't work at all. The browser is empty and firebug shows an error 
  <BR></FONT></FONT></FONT><SPAN 
  class="objectBox&#13;&#10;          objectBox-errorMessage hasBreakSwitch " 
  role="presentation"><SPAN class="errorMessage ">map.layers is 
  undefined</SPAN></SPAN></FONT><BR><BR>Christian<BR><FONT 
  face="Courier New, Courier, monospace"><BR></FONT><BR>Am 24.02.2011 15:16, 
  schrieb Matt Priour: 
  <BLOCKQUOTE cite=mid:BB2BDDAF5C1C4932895C3483DCA600A8@Lenovo type="cite">
    <META content="MSHTML 6.00.6002.18357" name=GENERATOR>
    <DIV><FONT face=Arial color=#000000 size=2><FONT face="Times New Roman" 
    size=3>Your map panel config should be:</FONT></FONT></DIV>
    <DIV>&nbsp;</DIV>
    <DIV><FONT face=Arial color=#000000 size=2><FONT face="Times New Roman" 
    size=3>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
    xtype:&nbsp;&nbsp;&nbsp; 'gx_mappanel',<BR>&nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    title:&nbsp;&nbsp;&nbsp; 'Maps',<BR>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; split: &nbsp;&nbsp;&nbsp; 
    true,<BR>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; map:&nbsp;&nbsp;&nbsp; mainMap,&nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    <BR>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; layers: [layerList]}</FONT></FONT></DIV>
    <DIV>&nbsp;</DIV>
    <DIV><FONT face=Arial><FONT size=2><FONT color=#000000>it is layers not 
    layer and zoomTo is not a valid config option. You can use zoom, center or 
    nothing and the map will start at maxExtent</FONT></FONT></FONT></DIV>
    <DIV>&nbsp;</DIV>
    <DIV><FONT face=Arial><FONT size=2><FONT color=#000000>Matt 
    Priour</FONT></FONT></FONT></DIV>
    <DIV><FONT face=Arial><FONT size=2><FONT color=#000000>Kestrel Computer 
    Consulting</FONT></FONT></FONT></DIV>
    <DIV style="FONT: 10pt Tahoma">
    <DIV><BR></DIV>
    <DIV style="BACKGROUND: rgb(245,245,245)">
    <DIV><B>From:</B> <A title=christian.gadge@ufz.de 
    href="mailto:christian.gadge@ufz.de" moz-do-not-send="true">Christian 
    Gadge</A> </DIV>
    <DIV><B>Sent:</B> Thursday, February 24, 2011 7:53 AM</DIV>
    <DIV><B>To:</B> <A title=users@geoext.org href="mailto:users@geoext.org" 
    moz-do-not-send="true">users@geoext.org</A> </DIV>
    <DIV><B>Subject:</B> [Users] How to add array of layers / LayerStore to 
    map</DIV></DIV></DIV>
    <DIV><BR></DIV>&nbsp;Hello all,<BR><BR>I tried to add an array of layers to 
    my map object but it fails. First I have created some layers and added these 
    to a layerlist (=array) which is also used for a layer tree. How can I add 
    this array to the map? Do I have to create a 
    GeoExt.data.layerStore?<BR>Thank you for some sugestions...<BR><BR>Here the 
    relevant code:<BR><BR>/*<BR>*&nbsp;&nbsp;&nbsp; Layer<BR>*/<BR>var OLwms = 
    new OpenLayers.Layer.WMS(<BR>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; "Topographic 
    map",<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
    <A class=moz-txt-link-rfc2396E href="http://labs.metacarta.com/wms/vmap0" 
    moz-do-not-send="true">"http://labs.metacarta.com/wms/vmap0"</A>, 
    <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
    {layers: 'basic'},<BR>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; {isBaseLayer: true}<BR>&nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; );<BR>&nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <BR>var BMwms = new 
    OpenLayers.Layer.WMS(<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; &nbsp; "Blue Marble Global 
    Imagery",<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp; <A class=moz-txt-link-rfc2396E 
    href="http://sigma.openplans.org/geoserver/wms?" 
    moz-do-not-send="true">"http://sigma.openplans.org/geoserver/wms?"</A>,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; {layers: 
    'bluemarble'},<BR>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    {isBaseLayer: true }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; );<BR>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <BR>var 
    NASAwms = new OpenLayers.Layer.WMS( <BR>&nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; "NASA WMS",<BR>&nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <A class=moz-txt-link-rfc2396E 
    title="http://wms.jpl.nasa.gov/wms.cgi?&#13;&#10;          CTRL + Click to follow link" 
    href="http://wms.jpl.nasa.gov/wms.cgi?" 
    moz-do-not-send="true">"http://wms.jpl.nasa.gov/wms.cgi?"</A>, 
    <BR>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; {layers: 
    'BMNG', format: 'image/png'},<BR>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; {isBaseLayer: true}<BR>&nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    );<BR>...<BR><BR>/*<BR>*&nbsp;&nbsp;&nbsp; Array with 
    layers<BR>*/<BR><BR>var layerList =[{&nbsp;&nbsp;&nbsp; 
    <BR>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; text: 'Background Layers',<BR>&nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; leaf: 
    false,&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; expanded: 
    true,<BR>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; children: [{<BR>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; nodeType: 
    'gx_layer',<BR>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; layer: OLwms,<BR>&nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    checked: false<BR>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }, {<BR>&nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    nodeType: 'gx_layer',<BR>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; layer: 
    BMwms,<BR>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; checked: false<BR>&nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    }, {<BR>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; nodeType: 
    'gx_layer',<BR>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; layer: NASAwms,<BR>&nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    checked: false<BR>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; },<BR>&nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    ...<BR>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; ]<BR>}];<BR>...<BR><BR>/*<BR>*&nbsp;&nbsp;&nbsp; the map 
    panel<BR>*/<BR><BR>var mainPanel = new Ext.Panel({<BR>&nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; region:&nbsp;&nbsp;&nbsp; 
    'center',<BR>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    deferredRender: false,<BR>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; margins:&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; '5 5 5 
    5',&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    <BR>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; activeTab: 2, 
    <BR>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    items:[<BR>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    {<BR>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; xtype:&nbsp;&nbsp;&nbsp; 
    'gx_mappanel',<BR>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; title:&nbsp;&nbsp;&nbsp; 'Maps',<BR>&nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; split: 
    &nbsp;&nbsp;&nbsp; true,<BR>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; map:&nbsp;&nbsp;&nbsp; 
    mainMap,&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; layer: 
    ([layerList]),<BR>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    &nbsp;&nbsp;&nbsp; zoomTo:&nbsp;&nbsp;&nbsp; 
    'maxExtent',<BR>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
    }]<BR>&nbsp;});&nbsp;&nbsp;&nbsp; <BR><BR><BR><BR>Best 
    regards,<BR>Christian<BR><BR>
    <HR>
    _______________________________________________<BR>Users mailing list<BR><A 
    class=moz-txt-link-abbreviated href="mailto:Users@geoext.org" 
    moz-do-not-send="true">Users@geoext.org</A><BR><A 
    class=moz-txt-link-freetext 
    href="http://www.geoext.org/cgi-bin/mailman/listinfo/users" 
    moz-do-not-send="true">http://www.geoext.org/cgi-bin/mailman/listinfo/users</A><BR></BLOCKQUOTE><BR><PRE class=moz-signature cols="72">-- 
Christian Gadge 
Department Urban and Environmental Sociology | Research Field Geomatics 


Helmholtz Centre for Environmental Research - UFZ 
Permoserstraße 15, 04318 Leipzig, Germany 
phone +49 (0)341 - 235 1730 
fax   +49 (0)341 - 235 1834 
email <A class=moz-txt-link-abbreviated href="mailto:christian.gadge@ufz.de" moz-do-not-send="true">christian.gadge@ufz.de</A>

Sitz der Gesellschaft: Leipzig | Vorsitzender des Aufsichtsrats: Wilfried Kraus
Registriergericht: Amtsgericht Leipzig | Wissenschaftlicher Geschäftsführer: Prof- Dr. Georg Teutsch 
Handelsregister Nr. B4703 | Administrativer Geschäftsführer: Dr. Andreas Schmidt 

<A class=moz-txt-link-freetext href="http://www.ufz.de" moz-do-not-send="true">http://www.ufz.de</A>



</PRE>
  <P></P>
  <HR>
  _______________________________________________<BR>Users mailing list<BR><A 
  class=moz-txt-link-abbreviated 
  href="mailto:Users@geoext.org">Users@geoext.org</A><BR><A 
  class=moz-txt-link-freetext 
  href="http://www.geoext.org/cgi-bin/mailman/listinfo/users">http://www.geoext.org/cgi-bin/mailman/listinfo/users</A><BR></BLOCKQUOTE><BR><PRE class=moz-signature cols="72">-- 
Christian Gadge 
Department Urban and Environmental Sociology | Research Field Geomatics 


Helmholtz Centre for Environmental Research - UFZ 
Permoserstraße 15, 04318 Leipzig, Germany 
phone +49 (0)341 - 235 1730 
fax   +49 (0)341 - 235 1834 
email <A class=moz-txt-link-abbreviated href="mailto:christian.gadge@ufz.de">christian.gadge@ufz.de</A>

Sitz der Gesellschaft: Leipzig | Vorsitzender des Aufsichtsrats: Wilfried Kraus
Registriergericht: Amtsgericht Leipzig | Wissenschaftlicher Geschäftsführer: Prof- Dr. Georg Teutsch 
Handelsregister Nr. B4703 | Administrativer Geschäftsführer: Dr. Andreas Schmidt 

<A class=moz-txt-link-freetext href="http://www.ufz.de">http://www.ufz.de</A>



</PRE></BODY></HTML>