<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META content="text/html; charset=utf-8" http-equiv=Content-Type>
<META name=GENERATOR content="MSHTML 8.00.6001.18975"></HEAD>
<BODY>
<DIV><FONT color=#000080 size=2 face=Arial><SPAN class=074180507-24112010>Hi 
all, </SPAN></FONT></DIV>
<DIV><FONT color=#000080 size=2 face=Arial><SPAN 
class=074180507-24112010></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT color=#000080 size=2 face=Arial><SPAN class=074180507-24112010>I 
added a legend-panel to my OL page and that works great for&nbsp;all legends 
that are vector based WMS layers. I also added multiple TileCache layers to the 
map panel.&nbsp;For those I added legendURL parameters to define how the legend 
should look in the legendPanel .&nbsp;The legend url is a link to a static png 
image. However,&nbsp;whatever I try I am running into problems that the legend 
for the TileCache layers does not show up.</SPAN></FONT></DIV>
<DIV><FONT color=#000080 size=2 face=Arial><SPAN class=074180507-24112010>What 
is the proper and easiest way to define the legenurls for the two layers I have 
been using&nbsp; and to use the png images I already have... see 
below&nbsp;</SPAN></FONT></DIV>
<DIV><FONT color=#000080 size=2 face=Arial><SPAN 
class=074180507-24112010></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT color=#000080 size=2 face=Arial><SPAN class=074180507-24112010>My 
latest attempt was just to define the  legenurl as a parameter see below but 
that does not work ....</SPAN></FONT></DIV>
<DIV><FONT color=#000080 size=2 face=Arial><SPAN 
class=074180507-24112010></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT color=#000080 size=2 face=Arial><SPAN class=074180507-24112010>var 
publiclands = new OpenLayers.Layer.WMS("Public Lands", 
"/tilecache/tilecache.py", {layers: 'calipc_public_lands', 'transparent': true, 
'legendURL': 'http://myurl.net/legend/publiclands_legend.png'}, {isBaseLayer: 
false, 'opacity': 0.6, 'visibility': true} );</SPAN></FONT></DIV>
<DIV><FONT color=#000080 size=2 face=Arial></FONT>&nbsp;</DIV>
<DIV><FONT color=#000080 size=2 face=Arial><SPAN class=074180507-24112010>var 
watersheds = new OpenLayers.Layer.WMS("Watersheds","/tilecache/tilecache.py", 
{layers: 'calipc_watersheds', 'transparent': true, 'legendURL': 
''http://myurl.net/legend/watersheds_legend.png'}, {isBaseLayer: false, 
'opacity': 1, 'visibility': true} );</SPAN></FONT></DIV>
<DIV><FONT color=#000080 size=2 face=Arial><SPAN 
class=074180507-24112010></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT color=#000080 size=2 face=Arial><SPAN class=074180507-24112010>my 
layerstore looks like this</SPAN></FONT></DIV>
<DIV><FONT color=#000080 size=2 face=Arial><SPAN 
class=074180507-24112010></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT color=#000080 size=2 face=Arial><SPAN class=074180507-24112010>var 
legendLayerStore = new 
GeoExt.data.LayerStore({<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
map: map,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
layers: [publiclands,watersheds,quads,counties]<BR>});</SPAN></FONT></DIV>
<DIV><FONT color=#000080 size=2 face=Arial><SPAN 
class=074180507-24112010></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT color=#000080 size=2 face=Arial><SPAN class=074180507-24112010>(quads 
and counties legend is working)</SPAN></FONT></DIV>
<DIV><FONT color=#000080 size=2 face=Arial><SPAN 
class=074180507-24112010></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT color=#000080 size=2 face=Arial><SPAN class=074180507-24112010>and 
</SPAN></FONT></DIV>
<DIV><FONT color=#000080 size=2 face=Arial><SPAN 
class=074180507-24112010>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; legendPanel 
= new 
GeoExt.LegendPanel({<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
title: 
'legend',<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
collapsed : 
false,&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; 
collapsible : 
true,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
defaults: 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
labelCls: 
'mylabel',<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
style: 
'padding:5px'<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
},<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
bodyStyle: 
'padding:5px',<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
// width: 
350,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
autoScroll: 
true,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
layerStore: legendLayerStore<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
})</SPAN></FONT></DIV>
<DIV><FONT color=#000080 size=2 face=Arial><SPAN 
class=074180507-24112010></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT color=#000080 size=2 face=Arial><SPAN class=074180507-24112010>I know 
that the 'legendURL' parameter is&nbsp;capitalized by OL , but I am not sure 
that is the problem that this is not working for me. If this is not the correct 
approach how can it be done ?</SPAN></FONT></DIV>
<DIV><FONT color=#000080 size=2 face=Arial><SPAN 
class=074180507-24112010></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT color=#000080 size=2 face=Arial><SPAN 
class=074180507-24112010>Thanks</SPAN></FONT></DIV>
<DIV><FONT color=#000080 size=2 face=Arial><SPAN 
class=074180507-24112010>Karsten</SPAN></FONT></DIV></BODY></HTML>