필터 지우기
필터 지우기

How to fix color global map overlap with frame?

조회 수: 1 (최근 30일)
chia hua
chia hua 2013년 5월 19일
답변: Amy Haskins 2016년 6월 6일
Hi I want to create a global map with colored filled.
But I find out the map always overlap with the frame,
I have tried uistack but it doesn't work, how can I fix this problem?
thank you!!!
This is my code
h=axesm ('stereo','Grid', 'off','MapLatLimit',[ys 90],'Origin',[90 120 0],'Frame','on','FLineWidth',2,...
'MeridianLabel','off','MLabelParallel','south','LabelRotation','off');
axis off
coast = load('coast.mat');
h1=geoshow(coast.lat, coast.long, 'DisplayType','polygon','EdgeColor',[0.7,0.7,0.7],'FaceColor',[0.7,0.7,0.7]);
This is map figure I draw
  댓글 수: 2
Walter Roberson
Walter Roberson 2013년 5월 19일
We do not have permission to access that document.
chia hua
chia hua 2013년 5월 26일
Hi I update the link , it ok now.

댓글을 달려면 로그인하십시오.

답변 (1개)

Amy Haskins
Amy Haskins 2016년 6월 6일
Trying to send the polygons to the back with UISTACK didn't seem to work well, but bringing the frame to the front looks like a good workaround.
h2 = framem('on');
uistack(h2,'top')

카테고리

Help CenterFile Exchange에서 Map Display에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by