Using the functions findobjand set, you can put a background patch, and then use it setto change the color.
h = worldmap('World')
p = findobj(h,'type','patch'); % Find background
set(p,'FaceColor',[1 1 1]); % Change background to white
source
share