How to remove country boundaries from map?
7 views (last 30 days)
Show older comments
Hello everyone,
I want to remove country/cities boundaries from my figure. Here I am using
geoscatter(Lat, Lon, 18, 'filled', 'r')
geobasemap bluegreen

I just want to keep coastal line. Any suggestions how it can be done?
Answers (1)
Simon Chan
on 3 Apr 2022
Just use the default one
geoscatter([10 55], [80 140], 18, 'filled', 'r')
2 Comments
Simon Chan
on 3 Apr 2022
Then use this:
geoscatter([20 40], [90 120], 18, 'filled', 'r');
geobasemap 'satellite';
See Also
Categories
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!