<div dir="ltr">I use a different method for getting the polygons as a text string, keep in mind this is for catching all polygons in the given layer and not for a selected or recently drawn polygon.<br><br><span style="color: rgb(0, 153, 0);">//put in your map init() function</span><br>
wkt = new OpenLayers.Format.WKT();<br><br><span style="color: rgb(0, 153, 0);">//Put this where you desire it to be and modify as necessary</span><br>for (var i=0;i&lt;vectors.features.length;i++) {<br>&nbsp;&nbsp;&nbsp; <span style="color: rgb(0, 153, 0);">//if (selFeatureID == vectors.features[i].id) {}</span><br>
&nbsp;&nbsp;&nbsp; var str = wkt.write(vectors.features[i]);<br>&nbsp;&nbsp;&nbsp; ajaxSendParams += &quot;&amp;bdySegment=&quot;+escape(str);<br>}<br><br><br><br><br clear="all">--<br>Nathan Gerber<br>
<br><br><div class="gmail_quote">On Thu, Sep 11, 2008 at 7:31 AM, Bijoy <span dir="ltr">&lt;<a href="mailto:bijoya@rediff.co.in">bijoya@rediff.co.in</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<br>
Hey GeoUser,<br>
<br>
Instead of using getComponentsString(), I use toString()... and, I get the<br>
result... but the format is different. Might have to do some string<br>
manipulation... However, this is good to go for now...<br>
<br>
Thanks man!!<br>
&lt;BIJOY&gt;<br>
<div class="Ih2E3d"><br>
<br>
Bijoy wrote:<br>
&gt;<br>
&gt; Hi GeoUser,<br>
&gt;<br>
&gt; I tried it as shown below:-<br>
&gt; function check(obj){<br>
&gt; &nbsp; &nbsp; &nbsp; var points = vectors.features[0].geometry.getComponentsString(); &nbsp;//<br>
&gt; where vectors is myVectorLayer<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; alert(points);<br>
&gt; &nbsp; &nbsp; &nbsp; polycontrol.deactivate();<br>
&gt; }<br>
&gt; It doesn&#39;t work. I get error like &quot;this.components[i].toShortString is not<br>
&gt; a function&quot; in the<br>
&gt; OpenLayers.Util.applyDefaults(geometry,t...sh(this.components[i].toShortString());}<br>
&gt;<br>
&gt; It seems so close... and yet so far... :)<br>
&gt; &lt;BIJOY&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; GeoUser wrote:<br>
&gt;&gt;<br>
&gt;&gt; Try with something like this:<br>
&gt;&gt;<br>
&gt;&gt; var points = myVectorLayer.features[0].geometry.getComponentsString();<br>
&gt;&gt;<br>
&gt;&gt; does it work for you?<br>
&gt;&gt;<br>
&gt;<br>
&gt;<br>
<br>
--<br>
</div>View this message in context: <a href="http://www.nabble.com/How-do-I-get-my-polygon-coordinates--tp19413142p19432872.html" target="_blank">http://www.nabble.com/How-do-I-get-my-polygon-coordinates--tp19413142p19432872.html</a><br>

<div><div></div><div class="Wj3C7c">Sent from the OpenLayers Users mailing list archive at Nabble.com.<br>
<br>
_______________________________________________<br>
Users mailing list<br>
<a href="mailto:Users@openlayers.org">Users@openlayers.org</a><br>
<a href="http://openlayers.org/mailman/listinfo/users" target="_blank">http://openlayers.org/mailman/listinfo/users</a><br>
</div></div></blockquote></div><br></div>