I am using OpenLayers.Layer.Zoomify to show large image files and this works like a charm. The only thing is that I would like to add some options to that layer ( opacity and transitionEffect) but it doesn't seem to work. Code:
var zoomify = new OpenLayers.Layer.Zoomify( "Zoomify",
zoomify_url,
new OpenLayers.Size( zoomify_width, zoomify_height ),
{ opacity: 0.5, transitionEffect: 'resize'}
);
Isn't this the right way of doing it? Or is it not possible to add these properties to Zoomify layers? Nothing happens to my zoomify layer.
