<div dir="ltr">
Hello everyone<br>
I have a problem to change the icon and the size of the marker when I use<br>
OpenLayers.Layer.GeoRSS, any size and any icon cheque with OpenLayers.Icon<br>
is not taken.<br>
Show always the marker by default.<br>
<br>
This is my code :<br>
<br>
yelp = new OpenLayers.Icon("blu.png", new OpenLayers.Size(20,29));<br>
new1 = new OpenLayers.Layer.GeoRSS( 'GeoRSS', 'georss.xml', yelp);<br>
map.addLayers([aste,unesco,<div dir="ltr">punti,new1]);<br><div><br>* I try this :<br><br>
var options = {<br>
icon: yelp<br>
};<br>
new1 = new OpenLayers.Layer.GeoRSS( 'GeoRSS', 'georss.xml', options);<br><br>* This :<br>
<br>
var newl = new OpenLayers.Layer.GeoRSS( 'Yelp GeoRSS', 'yelp-georss.xml', {'icon':yelp});<br><br>* And that :<br>
<br>
yelp = new OpenLayers.Icon("blu.png", new OpenLayers.Size(20,29));<br>new1 = new OpenLayers.Layer.GeoRSS( 'GeoRSS', 'georss.xml', options);<br>new1.icon = yelp;<br><br>I tryed these codes but also this doesn't work it continues to take marker as<br>
default,I have also considered your example but it isn't useful to solve my<br>
problem!</div></div></div>