Hi,<br><br>I have a strange issue with Firefox. The following snippet works well in Chrome 20, but doesn't in Firefox 13 (with openlayers 2.12), i.e. the LineString is not visible:<br><br>    var theLayer = new OpenLayers.Layer.Vector("Route", {<br>
        rendererOptions: {yOrdering: true},<br>        styleMap: new OpenLayers.StyleMap({'default':{<br>            fillOpacity: 1.0<br>        }})<br>    });<br>    map.addLayer(theLayer);<br><br>...<br><br>    var geometry = new OpenLayers.Geometry.LineString(polyPoints);<br>
    var routePolyLine = new OpenLayers.Feature.Vector(geometry, null, {<br>        strokeColor: color,<br>        strokeOpacity: opacity,<br>        strokeWidth: sWidth<br>    });<br>   <br>    theLayer.addFeatures(routePolyLine);<br>
<br>The difference I notice is that after having called addFeatures, in the DOM in Firefox, theLayer.unrenderedFeatures contains the entire vector (i.e. a copy of or reference to theLayer.features[0]), while in Chrome theLayer.unrenderedFeatures is null.<br>
<br>theLayer.reportError is set to true but I don't get any errors in the console.<br><br>I also tried <br>    theLayer.drawFeature(routePolyLine);<br>    theLayer.refresh();<br>after the addFeature, no change, the poly line doesn't appear in Firefox.<br>
<br>Any ideas ?<br><br>Thanks,<br>Armin<br>