<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Tahoma
}
--></style></head>
<body class='hmmessage'><div dir='ltr'>



Hi everyone,<BR>&nbsp;<BR>I'm not sure this is the channel to send doubts to the community....anyway, let's go! (If not, im sorry and please tell me the correct way to do it.)<BR>&nbsp;<BR>My question is how to include a download button for downloadind a vector layer with lines/pol draw by user. explain:<BR>&nbsp;<BR>I have a map developed with geoext with several functions.&nbsp;<BR>With&nbsp;the drawing controls,&nbsp;user is able to draw polygon and lines and stores it in a vector layer (called vector1). I need to give the user&nbsp;the possibility to download that vector layer&nbsp;containing its own draw, but I have no idea how to do it!<BR>The idea is to create a json layer and browse to save it in local user pc....<BR>&nbsp;<BR>Some help or idea please?<BR>&nbsp;<BR>Thanks a lot<BR>&nbsp;<BR>&nbsp;<BR>My code is:<BR>&nbsp;<BR>&nbsp;<BR>&nbsp;&nbsp;&nbsp; var vector = new OpenLayers.Layer.Vector("vector1");<br>&nbsp;&nbsp;&nbsp; map.addLayers([vector]);<BR>&nbsp;<BR>&nbsp;&nbsp; var ctrl, toolbarItems = [], action, actions = {};<BR>&nbsp;&nbsp;&nbsp; action = new GeoExt.Action({<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; text: "Dibuja polígono",<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; control: new OpenLayers.Control.DrawFeature(<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; vector, OpenLayers.Handler.Polygon<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ),<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; map: map,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // button options<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; toggleGroup: "draw",<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; allowDepress: true,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; tooltip: "draw polygon",<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // check item options<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; group: "draw"<br>&nbsp;&nbsp;&nbsp; });<br>&nbsp;&nbsp;&nbsp; actions["draw_poly"] = action;<br>&nbsp;&nbsp;&nbsp; toolbarItems.push(action);<br><BR>&nbsp;<BR>Thank again!<BR>&nbsp;<BR>                                               </div></body>
</html>