MATLAB: How to change size of axis labels in MappingToolbox, as well as ColorBar axis size

axislabelMapping Toolboxplotscattersetm

I have been struggling to change the size of the Latitude and Longitude values on the axis of my mapping plots in the Mapping Toolbox.
I would want to increase the size of those numbers as well as the size of the axis values on the ColorBar. I tried to use axesm(), but I keep getting an error about a Projection Map.
latlim = [25 50]; lonlim = [-105 -67];
axe = usamap(latlim, lonlim);
set(axe, 'Visible', 'off');
sheds = shaperead('usastatehi','UseGeoCoords', true, 'BoundingBox', [lonlim', latlim']);
geoshow(axe, sheds, 'FaceColor', [1 1 1])
%axesm('FontSize', 15) % This doesn't work.
scatterm(lat, long, 15, ftratio, 'filled')
caxis([0 3]);
colormap jet
colorbar

Best Answer

Use setm() to set properties of map axes.
setm(axe, 'FontSize', 15)