<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Verdana
}
--></style>
</head>
<body class='hmmessage'>
<BR>&nbsp;Hi,<BR>&nbsp;<BR>I promise the data is always&nbsp;the same.&nbsp;The only thing I change is&nbsp;the version, in fact,&nbsp;when I select the feature&nbsp;I can see the original information position (lon and lat), not the moved. And the rare thing is what you said, Andreas, is only a few positions who doesn't match.&nbsp;&nbsp;I forgot to see it happens only in FF 3.6.3 not in IE8.<BR>
&nbsp;<BR>
And now I was playing with data, and when I change the original zoom the positions appears&nbsp;in the same&nbsp;position&nbsp;around the map, not transformed:<BR>
&nbsp;<BR>
<A href="http://img706.imageshack.us/img706/7226/differentzoom.png">http://img706.imageshack.us/img706/7226/differentzoom.png</A><BR><A href="http://img594.imageshack.us/img594/9069/originalzoom.png">http://img594.imageshack.us/img594/9069/originalzoom.png</A><BR><BR>
&nbsp;<BR>
&nbsp;<BR>
&gt; Subject: Re: [OpenLayers-Users] Multiple Vector Layers (FireFox issue)<BR>&gt; From: ahocevar@opengeo.org<BR>&gt; Date: Wed, 14 Apr 2010 12:42:12 +0200<BR>&gt; CC: users@openlayers.org<BR>&gt; To: jordi_romagos@hotmail.com<BR>&gt; <BR>&gt; Hi,<BR>&gt; <BR>&gt; On Apr 14, 2010, at 10:41 , Jordi Romagos i Figueras wrote:<BR>&gt; <BR>&gt; &gt; Here are two images, one with OL 2.8 and other with OL 2.9 RC2 (I only changed include openlayers script line)<BR>&gt; &gt; <BR>&gt; &gt; http://img27.yfrog.com/gal.php?g=withol28.png<BR>&gt; <BR>&gt; Are you sure that your data has not changed between the two screenshots? I have opened both screenshots next to each other, and most of the positions match. The ones that don't seem to have been removed/added.<BR>&gt; <BR>&gt; -Andreas.<BR>&gt; <BR>&gt; &gt; <BR>&gt; &gt; <BR>&gt; &gt; I'm so sorry Bart, it's impossible to show the code.<BR>&gt; &gt; <BR>&gt; &gt; I can show how I add positions: I get positions from php file with utm format and then I add in a vector. The code is something like that:<BR>&gt; &gt; <BR>&gt; &gt; var positions= [];<BR>&gt; &gt; <BR>&gt; &gt; for (var j=0 ;j&lt;dades_posicions.length;j++){<BR>&gt; &gt; position = new OpenLayers.Feature.Vector(new OpenLayers.Geometry.Point( dades_posicions[j][idx_lon],dades_posicions[j][idx_lat]), {velo: dades_posicions[j][idx_vel],rotation:direccio*45,figura:direccio==0?"circle":"triangle"});<BR>&gt; &gt; positions.push(position);<BR>&gt; &gt; }<BR>&gt; &gt; <BR>&gt; &gt; layerPositions.addFeatures(positions);<BR>&gt; &gt; <BR>&gt; &gt; <BR>&gt; &gt; Subject: Re: [OpenLayers-Users] Multiple Vector Layers (FireFox issue)<BR>&gt; &gt; From: bartvde@osgis.nl<BR>&gt; &gt; Date: Wed, 14 Apr 2010 09:56:32 +0200<BR>&gt; &gt; CC: users@openlayers.org<BR>&gt; &gt; To: jordi_romagos@hotmail.com<BR>&gt; &gt; <BR>&gt; &gt; Hi,<BR>&gt; &gt; <BR>&gt; &gt; wrt your OL 2.9RC2 remark, dus you have an example page to demonstrate the problem?<BR>&gt; &gt; <BR>&gt; &gt; Best regards,<BR>&gt; &gt; Bart<BR>&gt; &gt; <BR>&gt; &gt; On Apr 14, 2010, at 9:52 AM, Jordi Romagos i Figueras wrote:<BR>&gt; &gt; <BR>&gt; &gt; <BR>&gt; &gt; Finally I found an explanation!!! <BR>&gt; &gt; <BR>&gt; &gt; The problem was because I put selectfeature control code above to map.addLayers code. If I put the code below map.addLayers it works fine! <BR>&gt; &gt; About event handlers I also tried before but I had the same problem, in FF in some layers doesn't works mouse events. <BR>&gt; &gt; <BR>&gt; &gt; Another thing, I'm not sure If it's a problem because I not read 2.9 API. I tried the same code using OL 2.9 RC2 and positions doesn't match! I don't know If I have to change anything?<BR>&gt; &gt; <BR>&gt; &gt; Another time a lot of thanks!<BR>&gt; &gt; <BR>&gt; &gt; <BR>&gt; &gt; &gt; Subject: Re: [OpenLayers-Users] Multiple Vector Layers (FireFox issue)<BR>&gt; &gt; &gt; From: ahocevar@opengeo.org<BR>&gt; &gt; &gt; Date: Tue, 13 Apr 2010 16:25:10 +0200<BR>&gt; &gt; &gt; CC: users@openlayers.org<BR>&gt; &gt; &gt; To: jordi_romagos@hotmail.com<BR>&gt; &gt; &gt; <BR>&gt; &gt; &gt; <BR>&gt; &gt; &gt; On Apr 13, 2010, at 15:35 , Jordi Romagos i Figueras wrote:<BR>&gt; &gt; &gt; <BR>&gt; &gt; &gt; &gt; Sorry Andreas,<BR>&gt; &gt; &gt; &gt; <BR>&gt; &gt; &gt; &gt; I will explain better,<BR>&gt; &gt; &gt; &gt; <BR>&gt; &gt; &gt; &gt; What I want is when some user select one feature of the two top layers the application displays a popup with information extracted from a php script. This, works fine when I do this:<BR>&gt; &gt; &gt; &gt; <BR>&gt; &gt; &gt; &gt; selectControl = new OpenLayers.Control.SelectFeature(layer1, {onSelect: onFeatureSelect,onUnselect:onFeatureUnSelect, hover: onFeatureHover});<BR>&gt; &gt; &gt; <BR>&gt; &gt; &gt; Note: there is no hover method. hover is a boolean property. Also, you should consider using event handlers instead of callback functions.<BR>&gt; &gt; &gt; <BR>&gt; &gt; &gt; &gt; <BR>&gt; &gt; &gt; &gt; But it doesn't call my onFeatureSelect method when I call like an array parameter, in fact, now I prove only one and the same layer and it doesn't works:<BR>&gt; &gt; &gt; &gt; <BR>&gt; &gt; &gt; &gt; selectControl = new OpenLayers.Control.SelectFeature([layer1], {onSelect: onFeatureSelect,onUnselect:onFeatureUnSelect, hover: onFeatureHover});<BR>&gt; &gt; &gt; <BR>&gt; &gt; &gt; Are you sure you are using OpenLayers &gt;= 2.8? Multi-layer selection was added in 2.8<BR>&gt; &gt; &gt; <BR>&gt; &gt; &gt; Regards,<BR>&gt; &gt; &gt; Andreas.<BR>&gt; &gt; &gt; <BR>&gt; &gt; &gt; <BR>&gt; &gt; &gt; &gt; <BR>&gt; &gt; &gt; &gt; All of this happend when I'm using Firefox browser.<BR>&gt; &gt; &gt; &gt; <BR>&gt; &gt; &gt; &gt; Thanks another time,<BR>&gt; &gt; &gt; &gt; Jordi.<BR>&gt; &gt; &gt; &gt; <BR>&gt; &gt; &gt; &gt; &gt; Subject: Re: [OpenLayers-Users] Multiple Vector Layers (FireFox issue)<BR>&gt; &gt; &gt; &gt; &gt; From: ahocevar@opengeo.org<BR>&gt; &gt; &gt; &gt; &gt; Date: Tue, 13 Apr 2010 14:30:29 +0200<BR>&gt; &gt; &gt; &gt; &gt; CC: users@openlayers.org<BR>&gt; &gt; &gt; &gt; &gt; To: jordi_romagos@hotmail.com<BR>&gt; &gt; &gt; &gt; &gt; <BR>&gt; &gt; &gt; &gt; &gt; On Apr 13, 2010, at 12:58 , Jordi Romagos i Figueras wrote: <BR>&gt; &gt; &gt; &gt; &gt; &gt; I tried what you said Andreas, and doesn't work for me (I'm using OL 2.8)<BR>&gt; &gt; &gt; &gt; &gt; <BR>&gt; &gt; &gt; &gt; &gt; What exactly "does not work"?<BR>&gt; &gt; &gt; &gt; &gt; <BR>&gt; &gt; &gt; &gt; &gt; &gt; I changed:<BR>&gt; &gt; &gt; &gt; &gt; &gt; <BR>&gt; &gt; &gt; &gt; &gt; &gt; selectControl = new OpenLayers.Control.SelectFeature(layer1, {onSelect: onFeatureSelect,onUnselect:onFeatureUnSelect, hover: onFeatureHover});<BR>&gt; &gt; &gt; &gt; &gt; &gt; for:<BR>&gt; &gt; &gt; &gt; &gt; &gt; selectControl = new OpenLayers.Control.SelectFeature([layer1,layer2], {onSelect: onFeatureSelect,onUnselect:onFeatureUnSelect, hover: onFeatureHover});<BR>&gt; &gt; &gt; &gt; &gt; &gt; <BR>&gt; &gt; &gt; &gt; &gt; &gt; I have to do something else?<BR>&gt; &gt; &gt; &gt; &gt; <BR>&gt; &gt; &gt; &gt; &gt; No, that should be all.<BR>&gt; &gt; &gt; &gt; &gt; <BR>&gt; &gt; &gt; &gt; &gt; Regards,<BR>&gt; &gt; &gt; &gt; &gt; Andreas.<BR>&gt; &gt; &gt; &gt; &gt; <BR>&gt; &gt; &gt; &gt; &gt; &gt; <BR>&gt; &gt; &gt; &gt; &gt; &gt; Thanks.<BR>&gt; &gt; &gt; &gt; &gt; &gt; <BR>&gt; &gt; &gt; &gt; &gt; &gt; <BR>&gt; &gt; &gt; &gt; &gt; &gt; &gt; Date: Mon, 12 Apr 2010 20:52:50 +0200<BR>&gt; &gt; &gt; &gt; &gt; &gt; &gt; From: ahocevar@opengeo.org<BR>&gt; &gt; &gt; &gt; &gt; &gt; &gt; To: users@openlayers.org<BR>&gt; &gt; &gt; &gt; &gt; &gt; &gt; Subject: Re: [OpenLayers-Users] Multiple Vector Layers (FireFox issue)<BR>&gt; &gt; &gt; &gt; &gt; &gt; &gt; <BR>&gt; &gt; &gt; &gt; &gt; &gt; &gt; On 2010-04-12 20:30 , chandanpansare wrote:<BR>&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt; I have multiple vector layers added in map and for each layer I have<BR>&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt; SelectFeature control.<BR>&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt; In IE, Chrome and Safari I'm able to select features of all the layers but<BR>&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt; in case of FireFox only features from the last layer added are accessible.<BR>&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt; would like to if there any work around / solution for this or is it a known<BR>&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt; issue?<BR>&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt; Any help will be greatly appreciated.<BR>&gt; &gt; &gt; &gt; &gt; &gt; &gt; &gt; <BR>&gt; &gt; &gt; &gt; &gt; &gt; &gt; <BR>&gt; &gt; &gt; &gt; &gt; &gt; &gt; You only need one SelectFeature control for all your layers. Configure <BR>&gt; &gt; &gt; &gt; &gt; &gt; &gt; it with an array of your layers, instead of just one layer.<BR>&gt; &gt; &gt; &gt; &gt; &gt; &gt; <BR>&gt; &gt; &gt; &gt; &gt; &gt; &gt; Regards,<BR>&gt; &gt; &gt; &gt; &gt; &gt; &gt; Andreas.<BR>&gt; &gt; &gt; &gt; &gt; &gt; &gt; <BR>&gt; &gt; &gt; &gt; &gt; &gt; &gt; -- <BR>&gt; &gt; &gt; &gt; &gt; &gt; &gt; Andreas Hocevar<BR>&gt; &gt; &gt; &gt; &gt; &gt; &gt; OpenGeo - http://opengeo.org/<BR>&gt; &gt; &gt; &gt; &gt; &gt; &gt; Expert service straight from the developers.<BR>&gt; &gt; &gt; &gt; &gt; &gt; &gt; <BR>&gt; &gt; &gt; &gt; &gt; &gt; &gt; _______________________________________________<BR>&gt; &gt; &gt; &gt; &gt; &gt; &gt; Users mailing list<BR>&gt; &gt; &gt; &gt; &gt; &gt; &gt; Users@openlayers.org<BR>&gt; &gt; &gt; &gt; &gt; &gt; &gt; http://openlayers.org/mailman/listinfo/users<BR>&gt; &gt; &gt; &gt; &gt; &gt; <BR>&gt; &gt; &gt; &gt; &gt; &gt; Tus datos personales, más seguros con Internet Explorer 8. ¡Descárgatelo gratis!_______________________________________________<BR>&gt; &gt; &gt; &gt; &gt; &gt; Users mailing list<BR>&gt; &gt; &gt; &gt; &gt; &gt; Users@openlayers.org<BR>&gt; &gt; &gt; &gt; &gt; &gt; http://openlayers.org/mailman/listinfo/users<BR>&gt; &gt; &gt; &gt; &gt; <BR>&gt; &gt; &gt; &gt; &gt; -- <BR>&gt; &gt; &gt; &gt; &gt; Andreas Hocevar<BR>&gt; &gt; &gt; &gt; &gt; OpenGeo - http://opengeo.org/<BR>&gt; &gt; &gt; &gt; &gt; Expert service straight from the developers.<BR>&gt; &gt; &gt; &gt; &gt; <BR>&gt; &gt; &gt; &gt; <BR>&gt; &gt; &gt; &gt; Tus datos personales, más seguros con Internet Explorer 8. ¡Descárgatelo gratis!_______________________________________________<BR>&gt; &gt; &gt; &gt; Users mailing list<BR>&gt; &gt; &gt; &gt; Users@openlayers.org<BR>&gt; &gt; &gt; &gt; http://openlayers.org/mailman/listinfo/users<BR>&gt; &gt; &gt; <BR>&gt; &gt; &gt; -- <BR>&gt; &gt; &gt; Andreas Hocevar<BR>&gt; &gt; &gt; OpenGeo - http://opengeo.org/<BR>&gt; &gt; &gt; Expert service straight from the developers.<BR>&gt; &gt; &gt; <BR>&gt; &gt; <BR>&gt; &gt; Tus datos personales, más seguros con Internet Explorer 8. ¡Descárgatelo gratis! _______________________________________________<BR>&gt; &gt; Users mailing list<BR>&gt; &gt; Users@openlayers.org<BR>&gt; &gt; http://openlayers.org/mailman/listinfo/users<BR>&gt; &gt; <BR>&gt; &gt; <BR>&gt; &gt; " ¿Sabes cómo tener tus amigos de Facebook en Messenger?" Entra aquí_______________________________________________<BR>&gt; &gt; Users mailing list<BR>&gt; &gt; Users@openlayers.org<BR>&gt; &gt; http://openlayers.org/mailman/listinfo/users<BR>&gt; <BR>&gt; <BR>&gt; <BR>&gt; -- <BR>&gt; Andreas Hocevar<BR>&gt; OpenGeo - http://opengeo.org/<BR>&gt; Expert service straight from the developers.<BR>&gt; <BR><BR>                                               <br /><hr />Tus datos personales, más seguros con Internet Explorer 8. <a href='http://www.microsoft.com/spain/windows/internet-explorer/default.aspx' target='_new'>¡Descárgatelo gratis!</a></body>
</html>