Hi Karina, <div><br></div><div>I&#39;ve just seen in another message this link [1], it can help you. As Eric said you, it uses the OpenLayers.Layer.Vector but it reads your text file as well.</div><div><br></div><div>Regards.</div>


<div><br></div><div>Germán</div><div><br></div><div>--------------------------</div><div>[1] <a href="http://openlayers.org/dev/examples/dynamic-text-layer.html">http://openlayers.org/dev/examples/dynamic-text-layer.html</a></div>

<div><br><div class="gmail_quote">2010/3/2 Eric Lemoine <span dir="ltr">&lt;<a href="mailto:eric.lemoine@camptocamp.com" target="_blank">eric.lemoine@camptocamp.com</a>&gt;</span><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div>On Monday, March 1, 2010, Karina Guardado &lt;<a href="mailto:kguardado@gmail.com" target="_blank">kguardado@gmail.com</a>&gt; wrote:<br>



&gt; Hi,<br>
&gt;<br>
&gt; Is there a way to change the box of a text layer maker to one that has a close option like other popups. I mean when I click on one marker a box is opened but there is not option to close it just click again in the marker icon.<br>



<br>
</div>Hi.<br>
<br>
What you want isn&#39;t supported.<br>
<br>
Using a Layer.Vector and a Control.SelectFeature is recommended.<br>
Although it would lead to more code on your side it would give you<br>
more flexibility.<br>
<br>
If you really want to use Layer.Text you can probably monkeypatch the<br>
prototype of feature so popups are created with a closebox by default:<br>
<br>
var _createPopup = OpenLayers.Feature.prototype.createPopup;<br>
OpenLayers.Feature.prototype.createPopup = function() {<br>
    _createPopup.call(this, true);<br>
};<br>
<br>
--<br>
Eric Lemoine<br>
<br>
Camptocamp France SAS<br>
Savoie Technolac, BP 352<br>
73377 Le Bourget du Lac, Cedex<br>
<br>
Tel : 00 33 4 79 44 44 96<br>
Mail : <a href="mailto:eric.lemoine@camptocamp.com" target="_blank">eric.lemoine@camptocamp.com</a><br>
<a href="http://www.camptocamp.com" target="_blank">http://www.camptocamp.com</a><br>
<div><div></div><div>_______________________________________________<br>
Users mailing list<br>
<a href="mailto:Users@openlayers.org" target="_blank">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><br clear="all"><br>-- <br>-----------<br>  |\__  <br>(:&gt;__)(<br>  |/    <br><br>Soluciones Geoinformáticas Libres                            <br><a href="http://geotux.tuxfamily.org/" target="_blank">http://geotux.tuxfamily.org/</a><br>



</div>