How to change yellow fill to white in 'mapshow'
3 views (last 30 days)
Show older comments
I used 'mapshow(S);' to plot shape file.
The plot is filled with yellow colour.
I need only boundary (fill with white)
How to change yellow to white
0 Comments
Accepted Answer
Chunru
on 14 Sep 2021
p = shaperead('concord_hydro_area.shp');
mapshow(p, 'FaceColor', 'y') % change 'y' to 'w' for white
More Answers (0)
See Also
Categories
Find more on Special Functions 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!