Help! I'm trying to add features to a vector layer from a string variable containing a KML image. I can successfully load the KML data at the time that I define the vector layer like this:<br />
<br />
map.addLayer(Zones_Layer = new OpenLayers.Layer.Vector('Zones',<br />
{  strategies: [new OpenLayers.Strategy.Fixed()],<br />
   protocol: new OpenLayers.Protocol.HTTP<br />
   ({ url: "Zones/A.kml",<br />
      format: new OpenLayers.Format.KML<br />
         ({  extractStyles: true,<br />
            extractAttributes: true,<br />
            maxDepth: 2<br />
         })<br />
   })<br />
}));<br />
<br />
but that only allows me to add one KML file to the vector layer. Instead, I am trying to use the "addFeatures" function (of which I find no examples) to add the features to the vector layer after it has already been defined, like this:<br />
<br />
map.addLayer(Zones_Layer = new OpenLayers.Layer.Vector('Zones'));<br />
var FeatureArray1 = new OpenLayers.Format.KML({extractStyles: true, extractAttributes: true, maxDepth: 2}).read(xmlhttp_responseText);<br />
Zones_Layer.addFeatures(FeatureArray1);<br />
var FeatureArray2 = Zones_Layer.features;<br />
<br />
When I inspect the variables "FeatureArray1" and "FeatureArray2" in FireBug, both correctly contain the feature data, but I see that the features in the vector layer are being held in an array called "unrenderedFeatures".<br />
<br />
So my question is: <b>Why are the features properly rendered when I load them the first way, but not the second, and how can I fix this?</b><br />
<br />
By the way, the KML file (attached <a href="http://osgeo-org.1560.x6.nabble.com/file/n5057472/A.kml" target="_top" rel="nofollow" link="external">A.kml</a>) was created in Google Maps, using their "My places"/"CREATE MAP" feature.<br />
<br />
Thanks in advance for your help!<br />

        
        
        
<br/><hr align="left" width="300" />
View this message in context: <a href="http://osgeo-org.1560.x6.nabble.com/How-To-Properly-Use-The-addFeatures-Function-tp5057472.html">How To Properly Use The "addFeatures" Function</a><br/>
Sent from the <a href="http://osgeo-org.1560.x6.nabble.com/OpenLayers-Users-f3910695.html">OpenLayers Users mailing list archive</a> at Nabble.com.<br/>