Yes, subject to some small code changes. Copy the code created in the WebMap Builder tool and paste it into Notepad or another text file programme.
src="http://ondemandapi.ordnancesurvey.co.uk/osmapapi/openspace.js?key=insert_your_api_key_here" type="text/javascript"
Locate the line towards the top where the URL and API key for OS OnDemand is inserted between the script tags (see example below):
type="text/javascript" src=http://openspace.ordnancesurvey.co.uk/osmapapi/openspace.js?key=insert_your_api_key_here
change to
type="text/javascript" src=http://ondemandapi.ordnancesurvey.co.uk/osmapapi/openspace.js?key=insert_your_api_key_here
the text 'insert_your_api_key_here'
the text 'insert_your_api_key_here' should be overtyped with the API key provided to you in your welcome letter.
A second change is required to the section in the code that declares map options. Locate the line:
//initiate the map
var options = {resolutions: [2500, 1000, 500, 200, 100, 50, 25, 10, 5, 4, 2.5, 2, 1]};
osMap = new OpenSpace.Map('map', options);
change to
var options = {products: ["OV0", "OV1", "OV2", "MSR", "MS", "250KR", "250K", "50KR", "50K", "25KR", "25K", "VMDR", "VMD", "VMLR", "VML", "SVR", "SV"]};
osMap = new OpenSpace.Map('map',options);
The product codes for the zoom map stack can also be added here.