How can I display a sub-area border in a map?
2 views (last 30 days)
Show older comments
Dear All, I created a Lambert Conic Projected map about Europe. I would like to show the border of some subregion. I tried the following code for show the Mid-Europe:
axesm('lambert','maplatlimit',[ 26.5861 71.8699],'maplonlimit',[-34.748 60.8422]);
pcolorm(lat,lon,z);
demcmap(z);
colorbar;
hold on
axesm('lambert','maplatlimit',[44 55],'maplonlimit',[ 16 30]);
S = shaperead('landareas','UseGeoCoords',true);
geoshow([S.Lat],[S.Lon], 'DisplayType', 'Polygon');
I attached the map. It shows the area of Mid-Europe but with beige facecolor. How can I show only the edge of this area?
0 Comments
Answers (0)
See Also
Categories
Find more on Map Display in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!