MATLAB: How to fit axes to contourm plot

axesmcontourmgeoshowMapping Toolbox

Hello, I'm trying to create a map of mean wind speed in the region of Greece. My lat and lon are coming from the variables XLAT and XLONG respectively and the variable WS_mean contains the data I want to map. My code is:
axesm ('MapProjection', 'lambert', 'MapLatLimit', [min(min(double(XLAT))) max(max(double(XLAT)))],'MapLonLimit', [min(min(double(XLONG))) max(max(double(XLONG)))],'Frame','on','Grid','on', 'MeridianLabel', 'on', 'ParallelLabel', 'on');
contourm(double(XLAT),double(XLONG),double(WS_mean),'Linestyle','none','Fill','on');
geoshow ('landareas.shp','FaceColor','white', 'FaceAlpha',0,'Linewidth',2)
colormap(jet(125));
I'm attaching the resulting figure. As you can see the axes are not properly aligned with the result of the contourm. I've tried all of the MapProjections and none is fitting my needs. How do I fit the axes to the contourm plot? Or is something wrong with the way i'm depicting the data with the contourm command??
Thanks in advance

Best Answer

I solved it by using the properties of axesm, Origin,FLatLimit, FLonLimit instead of MapLatLimit and MapLonLimit