Hi,<br><br>I'm trying to create a vector layer. My code is quite similar to the source code in:<br><br>http://openlayers.org/dev/examples/select-feature-multilayer.html?renderer=Canvas<br><br>However, I notice that the renderer=Canvas (url parameter) is not being used, because features are created using svg (inspecting with firebug)<br><br>Here is my code for the layer creation:<br><br>var layer_style = new OpenLayers.StyleMap({<br>                <span>    </span>"default": new OpenLayers.Style(OpenLayers.Util.applyDefaults({fillColor: "red",strokeColor: "gray",rotation: 45,pointRadius: 15}, OpenLayers.Feature.Vector.style["default"])),<br>                <span>    </span>"select": new OpenLayers.Style(OpenLayers.Util.applyDefaults({graphicName: "square", rotation: 45, pointRadius: 30}, OpenLayers.Feature.Vector.style["select"]))<br>            })<br><br>var vectorLayer = new OpenLayers.Layer.Vector("vLayer", {<br>                                 <span>    </span>styleMap: layer_style,<br>                                    <span>    </span>renderers: ["Canvas"]<br>                                   });<br><br>map.addLayer(vectorLayer);<div><br></div><div>I also notice that the options passed on the vector layer instantiation apparently don't mach the documentation:</div><div>http://dev.openlayers.org/releases/OpenLayers-2.12/doc/apidocs/files/OpenLayers/Layer/Vector-js.html<br><div><br></div><div>I'm using FF12, Chrome <span style="font-family: monospace; font-size: medium; background-color: rgb(255, 255, 255); ">22.0.1229.94</span></div><div><font face="monospace" size="3">Openlayers 2.12<br></font><br><div class="">Sent from Alto - altomail.com</div></div></div>