id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	state
1944	Layer.TileCache and Layer.TMS: support a subset of server resolutions	fredj	tschaub	"The ability to choose only a subset of the server available resolutions. If I have a server with resolutions {{{[10,11,12,13,14,15]}}}, I want to be able to create a map with:

{{{
map = new OpenLayers.Map('map', {
    resolutions: [11,13]
});
map.addLayer(new OpenLayers.Layer.TileCache('tc layer', 
                                            'http://www.example.com/tilecache',  
                                            'tc-layer'))
}}}

Currently, the result is not correct because {{{TileCache.getUrl()}}} ask for zoom level '0' if the map resolution is '11'; it should be '1' in this case.

Possible solution: pass the server resolutions to the !TileCache layer to correctly compute the zoom level.

Same problem for Layer.TMS and maybe others.
"	feature	closed	minor	2.8 Release	Layer.TileCache	SVN	fixed			Complete
