<html><head><style type='text/css'>p { margin: 0; }</style></head><body><div style='font-family: Times New Roman; font-size: 12pt; color: #000000'>Hello Guys,<br><br>I need a fresh pair of eyes, any bright idea would be much appreciated. <br><br>I'm using two functions to achive the following: <br><br>1. to add markers from Text; and, <br>2. to remove and destroy those markers (in other words to reposition them). <br><br>This way I'm loading periodically the markers position.&nbsp; But because the markers are deleted and then recreated again I find my markers flashing each time they are updated. <br><br>So is there a way to update the markers position instead of removing and creating them? The whole idea is to get rid if marker flickering! <br><br>the functions are as follow:<br><br><pre id="line10">function addUrl() {<br>                                newl = new OpenLayers.Layer.Text( "Makinat", {location: "./Views/makinat.php"} );<br>                    map.addLayer(newl);<br>                        }<br>function del() {<br>                                map.removeLayer(newl);<br>                                newl.destroy()<br>                        }<br><br>I published an example of this at http://212.112.229.168/gpsVer2/ .<br></pre><br></div></body></html>