I got this bit of code from the old API forum -
var OSmaptype = 904 ; // code for OS, may change
var prefs = MMDataResolver.getDataPreferences(mapType);
var newprefs = [OSmaptype]; // put OS map on top
for( var i = 0 ; i < prefs.length ; ++i ) // scan maptypes:
{
if (prefs[i] != OSmaptype)
{ newprefs.push(prefs[i]) }
}
MMDataResolver.setDataPreferences( mapType, newprefs );
The 904 is something of a magic number; to find it out, you can use
www.multimaps.com switch to the 'basic maps', get an OS map view and then examine the url to see " ...&mapData=904"
cheers, Ross K