<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
I am dynamically adding layers to my Map object, and would like the Map
to have the Features selected after the layer is loaded.<br>
I have followed the DevGuide examples, and I get the new layers to
appear; however, the features on the layer are not selectable.&nbsp; Looking
into the base Map definition, I see that when a layer is added that can
be selected, additional XML nodes are added to the map as below, with
the 'Selectable == true'.&nbsp;&nbsp; <br>
&nbsp;&nbsp;&nbsp; &lt;MapLayer&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;Name&gt;New Layer&lt;/Name&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;ResourceId&gt;Library://.... &lt;/ResourceId&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <b>&lt;Selectable&gt;true&lt;/Selectable&gt;</b><br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;ShowInLegend&gt;true&lt;/ShowInLegend&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;LegendLabel&gt;&nbsp;&nbsp; &lt;/LegendLabel&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;ExpandInLegend&gt;true&lt;/ExpandInLegend&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;Visible&gt;true&lt;/Visible&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;Group&gt;&lt;/Group&gt;<br>
&nbsp;&nbsp;&nbsp; &lt;/MapLayer&gt;<br>
<br>
If I want my dynamic layers to be selectable, do I need to also update
the base Map Definition file too, or is there some other way via the
API that I can do this and have the new layer features be selectable.<br>
<br>
Thanks,<br>
<br>
-scott<br>
</body>
</html>