其他分享
首页 > 其他分享> > Mapping Toolbox 2

Mapping Toolbox 2

作者:互联网

h = worldmap('Europe');
getm(h,'MapProjection')
geoshow('landareas.shp', 'FaceColor', [0.15 0.5 0.15])
geoshow('worldlakes.shp', 'FaceColor', 'cyan')
geoshow('worldrivers.shp', 'Color', 'blue')
geoshow('worldcities.shp', 'Marker', '.',...
                           'MarkerEdgeColor', 'magenta')

% Place a label on the map to identify the Mediterranean Sea.                       
labelLat = 35;
labelLon = 14;
textm(labelLat, labelLon, 'Mediterranean Sea')

标签:shp,FaceColor,geoshow,Mapping,labelLon,0.15,labelLat,Toolbox
来源: https://blog.csdn.net/Theo93/article/details/109961196