Hi Sébastien,<br><i><br></i>Are you referring to features superimposed on the same layer ? If so what you described would be a useful thing<br>to have when multiple features are superimposed. I dont think I have come across anything of this nature. Has anyone else ?<br>
<br>However if the two superimposed features are on different layers, the currently activated selectFeature control for that <br>particular layer would select only features from the mentioned layer. But if multiple features are superimposed on the <br>
selected layer you run in to the issue mentioned above.<br><br>Regards,<br>Indika<br><br><br><div class="gmail_quote">2008/12/4 Sébastien Geindre <span dir="ltr">&lt;<a href="mailto:sebastien.geindre@meteo.fr">sebastien.geindre@meteo.fr</a>&gt;</span><br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Do you think there is a way to select the layer after the event is thrown ?<br>
<br>
Imagine, you click the mouse on a feature, in fact on 2 features - superimposed -, the UI shows you the both features, and you could select one....draw the attributes of the selected one....<br>
<br>
but for that, we need have event thrown on each layer...<br>
which is not possible...<br>
<br>
am i right ?<br>
<br>
<br>
Indika Tantrigoda a écrit :<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div class="Ih2E3d">
Hi,<br>
<br>
Thanks for the info Eric.<br>
I&#39;ll follow up on activating/deactivating the select feature control.<br>
Maybe it would increase the performance of the application since the controls are created only once.<br>
<br>
Indika<br>
<br>
<br></div>
2008/11/26 Eric Lemoine &lt;<a href="mailto:eric.c2c@gmail.com" target="_blank">eric.c2c@gmail.com</a> &lt;mailto:<a href="mailto:eric.c2c@gmail.com" target="_blank">eric.c2c@gmail.com</a>&gt;&gt;<div class="Ih2E3d"><br>

<br>
 &nbsp; &nbsp;Indika<br>
<br>
 &nbsp; &nbsp;So you just let the user choose what layer feature selection works<br>
 &nbsp; &nbsp;for, right?<br>
<br>
 &nbsp; &nbsp;I don&#39;t know about Sebastien&#39;s case but in lots of situations this<br>
 &nbsp; &nbsp;isn&#39;t acceptable - it&#39;s a pain for the user to select the type of<br>
 &nbsp; &nbsp;objects he&#39;s going to query.<br>
<br>
 &nbsp; &nbsp;On an unrelated note, I notice that you create a new control each time<br>
 &nbsp; &nbsp;the user switches layer type, instead you could probably have two<br>
 &nbsp; &nbsp;select feature controls and activate/deactivate them based on the<br>
 &nbsp; &nbsp;selected radio button.<br>
<br>
 &nbsp; &nbsp;Eric<br>
<br>
 &nbsp; &nbsp;2008/11/26, Indika Tantrigoda &lt;<a href="mailto:indika85@gmail.com" target="_blank">indika85@gmail.com</a><br></div>
 &nbsp; &nbsp;&lt;mailto:<a href="mailto:indika85@gmail.com" target="_blank">indika85@gmail.com</a>&gt;&gt;:<div><div></div><div class="Wj3C7c"><br>
 &nbsp; &nbsp; &gt; Hi,<br>
 &nbsp; &nbsp; &gt;<br>
 &nbsp; &nbsp; &gt; After looking at<br>
 &nbsp; &nbsp; &gt;<br>
 &nbsp; &nbsp;<a href="http://gis.ibbeck.de/ginfo/apps/OLExamples/OL26/examples/styles_unique_with_group_wfs.htmlI" target="_blank">http://gis.ibbeck.de/ginfo/apps/OLExamples/OL26/examples/styles_unique_with_group_wfs.htmlI</a><br>

 &nbsp; &nbsp; &gt; managed to find a<br>
 &nbsp; &nbsp; &gt; work around . I have two wfs point layers, and can activate the<br>
 &nbsp; &nbsp; &gt; selectFeature for the currently selected layer via a radio button.<br>
 &nbsp; &nbsp; &gt;<br>
 &nbsp; &nbsp; &gt; Some of my features were superimposed on top of other layers.<br>
 &nbsp; &nbsp;However when<br>
 &nbsp; &nbsp; &gt; the needed layer is selected via the radio buttons the selected<br>
 &nbsp; &nbsp;layer is<br>
 &nbsp; &nbsp; &gt; superimposed.<br>
 &nbsp; &nbsp; &gt;<br>
 &nbsp; &nbsp; &gt; Heres my code<br>
 &nbsp; &nbsp; &gt;<br>
 &nbsp; &nbsp; &gt; //inside init()<br>
 &nbsp; &nbsp; &gt;<br>
 &nbsp; &nbsp; &gt; var myHTML = &quot;&lt;input type=radio name=myRadio<br>
 &nbsp; &nbsp; &gt; onclick=test(2)&gt;&lt;label&gt;Cities&lt;/label&gt; &lt;img<br>
 &nbsp; &nbsp;src=&#39;./img/marker-blue.png&#39;&gt;<br>
 &nbsp; &nbsp; &gt; &lt;br&gt;&quot; myHTML += &quot;&lt;input type=radio name=myRadio<br>
 &nbsp; &nbsp; &gt; onclick=test(3)&gt;&lt;label&gt;Stations&lt;/label&gt; &lt;img<br>
 &nbsp; &nbsp;src=&#39;./img/marker-gold.png&#39;&gt;&quot;<br>
 &nbsp; &nbsp; &gt;<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; document.getElementById(&quot;controls&quot;).innerHTML = myHTML;<br>
 &nbsp; &nbsp; &gt; //<br>
 &nbsp; &nbsp; &gt;<br>
 &nbsp; &nbsp; &gt; //outside init()<br>
 &nbsp; &nbsp; &gt;<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp;var myLayer; &nbsp;//global variable<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp;var myObj; &nbsp; &nbsp; //global variable<br>
 &nbsp; &nbsp; &gt;<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp;function test(id) {<br>
 &nbsp; &nbsp; &gt;<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; myLayer =id;<br>
 &nbsp; &nbsp; &gt;<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if(selectControl)<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;{<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //alert(&quot;Hiiiiiiiiiiiii&quot;);<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; selectControl.destroy();<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}<br>
 &nbsp; &nbsp; &gt;<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;selectControl = new<br>
 &nbsp; &nbsp; &gt; OpenLayers.Control.SelectFeature(map.layers[id],<br>
 &nbsp; &nbsp; &gt;<br>
 &nbsp; &nbsp; &gt; {<br>
 &nbsp; &nbsp; &gt;<br>
 &nbsp; &nbsp; &gt; onSelect : onFeatureSelect,<br>
 &nbsp; &nbsp; &gt;<br>
 &nbsp; &nbsp; &gt; onUnselect: onFeatureUnselect<br>
 &nbsp; &nbsp; &gt;<br>
 &nbsp; &nbsp; &gt; });<br>
 &nbsp; &nbsp; &gt;<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; map.addControl(selectControl);<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; selectControl.activate();<br>
 &nbsp; &nbsp; &gt;<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //I didnt think this it necessary to unregister<br>
 &nbsp; &nbsp;because the<br>
 &nbsp; &nbsp; &gt; control is destroyed above<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //map.layers[id].events.unregister(&#39;featureselected&#39;,<br>
 &nbsp; &nbsp; &gt; map.layers[id], regFeatureSelected);<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //map.layers[id].events.unregister(&#39;featureunselected&#39;,<br>
 &nbsp; &nbsp; &gt; map.layers[id], regFeatureUnselected);<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp;}<br>
 &nbsp; &nbsp; &gt;<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;function onFeatureSelect()<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;{<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;var currentLayer = map.layers[myLayer];<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;var obj = currentLayer.selectedFeatures[0];<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;myObj = obj<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;//alert(obj.attributes[&#39;name&#39;]);<br>
 &nbsp; &nbsp; &gt;<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;popup = new OpenLayers.Popup.FramedCloud(&quot;chicken&quot;,<br>
 &nbsp; &nbsp; &gt;<br>
 &nbsp; &nbsp; &gt; obj.geometry.getBounds().getCenterLonLat(),<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;null,<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&quot;&lt;div style=&#39;font-size:.8em&#39;&gt;&quot; +<br>
 &nbsp; &nbsp; &gt; obj.attributes[&#39;name&#39;] +&quot;&lt;br /&gt;&quot; + &quot;&lt;/div&gt;&quot;,<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;null, true, onPopupClose);<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;obj.popup = popup;<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;map.addPopup(popup);<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br>
 &nbsp; &nbsp; &gt;<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;function onPopupClose(evt) {<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;selectControl.unselect(myObj);<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}<br>
 &nbsp; &nbsp; &gt;<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;function onFeatureUnselect()<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;{<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;//alert(&quot;from regFeatureUnselected&quot;);<br>
 &nbsp; &nbsp; &gt;<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; map.removePopup(myObj.popup);<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; myObj.popup.destroy();<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; myObj.popup = null;<br>
 &nbsp; &nbsp; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}<br>
 &nbsp; &nbsp; &gt;<br>
 &nbsp; &nbsp; &gt;<br>
 &nbsp; &nbsp; &gt; Hope this was helpful.<br>
 &nbsp; &nbsp; &gt;<br>
 &nbsp; &nbsp; &gt; Indika<br>
 &nbsp; &nbsp; &gt;<br>
 &nbsp; &nbsp; &gt;<br>
 &nbsp; &nbsp; &gt; 2008/11/26 Eric Lemoine &lt;<a href="mailto:eric.c2c@gmail.com" target="_blank">eric.c2c@gmail.com</a><br></div></div>
 &nbsp; &nbsp;&lt;mailto:<a href="mailto:eric.c2c@gmail.com" target="_blank">eric.c2c@gmail.com</a>&gt;&gt;<div class="Ih2E3d"><br>
 &nbsp; &nbsp; &gt;<br>
 &nbsp; &nbsp; &gt;&gt; On Wed, Nov 26, 2008 at 10:20 AM, Sébastien Geindre<br></div>
 &nbsp; &nbsp; &gt;&gt; &lt;<a href="mailto:sebastien.geindre@meteo.fr" target="_blank">sebastien.geindre@meteo.fr</a> &lt;mailto:<a href="mailto:sebastien.geindre@meteo.fr" target="_blank">sebastien.geindre@meteo.fr</a>&gt;&gt;<div class="Ih2E3d">
<br>
 &nbsp; &nbsp;wrote:<br>
 &nbsp; &nbsp; &gt;&gt; &gt; Eric Lemoine a écrit :<br>
 &nbsp; &nbsp; &gt;&gt; &gt;&gt;<br>
 &nbsp; &nbsp; &gt;&gt; &gt;&gt; Seb, I don&#39;t understand your question. If you&#39;re trying to<br>
 &nbsp; &nbsp;get the<br>
 &nbsp; &nbsp; &gt;&gt; &gt;&gt; select feature control to work with multiple layers then you<br>
 &nbsp; &nbsp;must know<br>
 &nbsp; &nbsp; &gt;&gt; &gt;&gt; that that isn&#39;t currently supported by OpenLayers. Sorry for not<br>
 &nbsp; &nbsp; &gt;&gt; &gt;&gt; understanding your question. Eric<br>
 &nbsp; &nbsp; &gt;&gt; &gt;<br>
 &nbsp; &nbsp; &gt;&gt; &gt; you guessed it !<br>
 &nbsp; &nbsp; &gt;&gt; &gt;<br>
 &nbsp; &nbsp; &gt;&gt; &gt; is there any workaround ?<br>
 &nbsp; &nbsp; &gt;&gt; &gt;<br>
 &nbsp; &nbsp; &gt;&gt; &gt; all features must be on the same layer ?<br>
 &nbsp; &nbsp; &gt;&gt;<br>
 &nbsp; &nbsp; &gt;&gt; Yes.<br>
 &nbsp; &nbsp; &gt;&gt;<br>
 &nbsp; &nbsp; &gt;&gt; --<br>
 &nbsp; &nbsp; &gt;&gt; Eric<br>
 &nbsp; &nbsp; &gt;&gt; _______________________________________________<br>
 &nbsp; &nbsp; &gt;&gt; Users mailing list<br></div>
 &nbsp; &nbsp; &gt;&gt; <a href="mailto:Users@openlayers.org" target="_blank">Users@openlayers.org</a> &lt;mailto:<a href="mailto:Users@openlayers.org" target="_blank">Users@openlayers.org</a>&gt;<div class="Ih2E3d"><br>
 &nbsp; &nbsp; &gt;&gt; <a href="http://openlayers.org/mailman/listinfo/users" target="_blank">http://openlayers.org/mailman/listinfo/users</a><br>
 &nbsp; &nbsp; &gt;&gt;<br>
 &nbsp; &nbsp; &gt;<br>
<br>
<br>
</div></blockquote>
<br>
<br>
</blockquote></div><br>