<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40"><head><meta name=Generator content="Microsoft Word 12 (filtered medium)"><style><!--
/* Font Definitions */
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:Tahoma;
        panose-1:2 11 6 4 3 5 4 4 2 4;}
@font-face
        {font-family:Consolas;
        panose-1:2 11 6 9 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";
        color:black;}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
pre
        {mso-style-priority:99;
        mso-style-link:"HTML amb format previ Car";
        margin:0cm;
        margin-bottom:.0001pt;
        font-size:10.0pt;
        font-family:"Courier New";
        color:black;}
span.EstilCorreuElectrnic17
        {mso-style-type:personal;
        font-family:"Calibri","sans-serif";
        color:windowtext;}
span.HTMLambformatpreviCar
        {mso-style-name:"HTML amb format previ Car";
        mso-style-priority:99;
        mso-style-link:"HTML amb format previ";
        font-family:Consolas;
        color:black;}
span.EstilCorreuElectrnic20
        {mso-style-type:personal-reply;
        font-family:"Calibri","sans-serif";
        color:#1F497D;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-size:10.0pt;}
@page WordSection1
        {size:612.0pt 792.0pt;
        margin:70.85pt 3.0cm 70.85pt 3.0cm;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]--></head><body bgcolor=white lang=CA link=blue vlink=purple><div class=WordSection1><p class=MsoNormal><span style='color:#1F497D'>Hi Alenxandre,<o:p></o:p></span></p><p class=MsoNormal><span style='color:#1F497D'><o:p> </o:p></span></p><p class=MsoNormal><span style='color:#1F497D'>I’ve changed ,y code, but it doesn’t work:<o:p></o:p></span></p><p class=MsoNormal><span style='color:#1F497D'><o:p> </o:p></span></p><p class=MsoNormal><span style='color:#1F497D'> var NewStyle = {strokeColor: "blue", strokeOpacity: "0.7", strokeWidth: 2, fillColor: "blue", pointRadius: 3, cursor: "pointer"};<o:p></o:p></span></p><p class=MsoNormal><span style='color:#1F497D'> <o:p></o:p></span></p><p class=MsoNormal><span style='color:#1F497D'> action = new GeoExt.Action({<o:p></o:p></span></p><p class=MsoNormal><span style='color:#1F497D'> control: new OpenLayers.Control.Measure(OpenLayers.Handler.Path, {persist: true, style: NewStyle}),<o:p></o:p></span></p><p class=MsoNormal><span style='color:#1F497D'> ....<o:p></o:p></span></p><p class=MsoNormal><span style='color:#1F497D'><o:p> </o:p></span></p><p class=MsoNormal><span style='color:#1F497D'>Any idea?<o:p></o:p></span></p><p class=MsoNormal><span style='color:#1F497D'><o:p> </o:p></span></p><p class=MsoNormal><span style='color:#1F497D'>Thanks again,<o:p></o:p></span></p><p class=MsoNormal><span style='color:#1F497D'><o:p> </o:p></span></p><p class=MsoNormal><span style='color:#1F497D'>Toni.<o:p></o:p></span></p><p class=MsoNormal><span style='color:#1F497D'><o:p> </o:p></span></p><div><div style='border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0cm 0cm 0cm'><p class=MsoNormal><b><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";color:windowtext'>De:</span></b><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif";color:windowtext'> Alexandre Dube [mailto:adube@mapgears.com] <br><b>Enviat:</b> viernes, 04 de marzo de 2011 14:38<br><b>Per a:</b> Vidal, Antoni<br><b>A/c:</b> users@geoext.org<br><b>Tema:</b> Re: Change color line in OpenLayers.Handler.Path<o:p></o:p></span></p></div></div><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal>Hi Vidal,<br><br> You're problem isn't related to a GeoExt feature by the way. "Styling a Vector feature" is purely OpenLayers oriented and you were right to post it to the OpenLayers-Users ML.<br><br> If Firebug, if you look at the Handler.Path you create, you'll see that it has a 'layer' property. It is a OpenLayers.Layer.Vector that is used to put the drawn features of the Handler. Now, if you look at the ./lib/OpenLayers/Handler/Path.js, you won't see the 'layer' property, but the constructor extends from OpenLayers.Handler.Point. Looking at this one, you'll see the 'layer' property there and also a 'layerOptions', which is exactly what you're looking for : "{Object} Any optional properties to be set on the sketch layer".<br><br> Use this property to style your sketch layer features by reading the documentation and example about styling I sent :<br><a href="http://docs.openlayers.org/library/feature_styling.html"> http://docs.openlayers.org/library/feature_styling.html</a><br> <a href="http://trac.osgeo.org/openlayers/browser/branches/openlayers/2.10/lib/OpenLayers/Feature/Vector.js#L432">http://trac.osgeo.org/openlayers/browser/branches/openlayers/2.10/lib/OpenLayers/Feature/Vector.js#L432</a><br><br>Best regards,<br><br>Alexandre<br><br><br>On 11-03-04 06:26 AM, Vidal, Antoni wrote: <o:p></o:p></p><p class=MsoNormal>Hi Alexander,<o:p></o:p></p><p class=MsoNormal> <o:p></o:p></p><p class=MsoNormal>You answered me in OL list but my problem is using GeoExt.<o:p></o:p></p><p class=MsoNormal> <o:p></o:p></p><p class=MsoNormal>My code:<o:p></o:p></p><p class=MsoNormal> <o:p></o:p></p><p class=MsoNormal> action = new GeoExt.Action({<o:p></o:p></p><p class=MsoNormal> control: new OpenLayers.Control.Measure(OpenLayers.Handler.Path, {persist: true}),<o:p></o:p></p><p class=MsoNormal> tooltip: 'Line',<o:p></o:p></p><p class=MsoNormal> map: map,<o:p></o:p></p><p class=MsoNormal> iconCls: 'drawline',<o:p></o:p></p><p class=MsoNormal> toggleGroup: 'tools'<o:p></o:p></p><p class=MsoNormal> });<o:p></o:p></p><p class=MsoNormal> <o:p></o:p></p><p class=MsoNormal> action.control.events.on({<o:p></o:p></p><p class=MsoNormal> "measure": handleMeasurement,<o:p></o:p></p><p class=MsoNormal> "measurepartial": handleMeasurements<o:p></o:p></p><p class=MsoNormal> });<o:p></o:p></p><p class=MsoNormal> <o:p></o:p></p><p class=MsoNormal> actions.push(action);<o:p></o:p></p><p class=MsoNormal> <o:p></o:p></p><p class=MsoNormal>How can I change default orange color of drawned lines?<o:p></o:p></p><p class=MsoNormal> <o:p></o:p></p><p class=MsoNormal>Thanks again<o:p></o:p></p><p class=MsoNormal> <o:p></o:p></p><p class=MsoNormal><b><span style='font-size:10.0pt;font-family:"Arial","sans-serif";color:#0D0D0D'>Antoni Vidal</span></b><o:p></o:p></p><p class=MsoNormal><span style='font-size:10.0pt;font-family:"Arial","sans-serif";color:gray'>Unitat d'Aplicacions SIG-WEB<br><a href="http://mercuri.icc.cat/website/mob_nf/mob1/mob2/inici2.htm?CONSULTA=Institut%20Cartogr%25E0fic%20de%20Catalunya&XYADDRESS=429486:4580392"><span style='color:gray'>Institut Cartogrāfic de Catalunya</span></a><br>Parc de Montjuīc, E-08038 Barcelona<br>Tel. (+34) 93 567 15 00 (ext. 3228)<br><a href="http://www.icc.cat/">www.icc.cat</a></span><o:p></o:p></p><p class=MsoNormal> <o:p></o:p></p><p class=MsoNormal><span style='font-size:12.0pt;font-family:"Times New Roman","serif"'><br><br><br><o:p></o:p></span></p><pre>-- <o:p></o:p></pre><pre>Alexandre Dubé<o:p></o:p></pre><pre>Mapgears<o:p></o:p></pre><pre><a href="http://www.mapgears.com">www.mapgears.com</a><o:p></o:p></pre></div></body></html>