How do I remove a geoaxes map from GeoPanel

조회 수: 4 (최근 30일)
Gregory Crabtree
Gregory Crabtree 2023년 10월 4일
댓글: Dyuman Joshi 2023년 10월 6일
When I reset geographic boundaries and reload the map, it loads over the top of the previous one. I can get a handle to both the GeoPanel container and the geoaxis, but cannot figure out how to close the current map before loading a new one.
gx = geoaxes('parent',app.GeoPanel);
geoplot(gx,app.SensorsArea,'*',MarkerEdgeColor=[0.635 0.078 0.184]);
geolimits(gx, app.EventIn.lat, app.EventIn.lon);

답변 (1개)

檮杌
檮杌 2023년 10월 5일
편집: 檮杌 2023년 10월 5일
Would cla work for you? cla clears current axis and it should work for geoaxes too.
gx = geoaxes;
latSeattle = 47.62;
lonSeattle = -122.33;
latAnchorage = 61.20;
lonAnchorage = -149.9;
geoplot(gx,[latSeattle latAnchorage],[lonSeattle lonAnchorage],'g-*')
geobasemap(gx,'colorterrain')
cla % this clears previous results and sets back to default
  댓글 수: 2
Gregory Crabtree
Gregory Crabtree 2023년 10월 5일
Thank you for the suggestion, but no. cla does remove any points, lines, and polygons plotted. However, it leaves behind the map, lat and long axis, etc.
I had also tried clf and close, but those apparently only work with figures.
Dyuman Joshi
Dyuman Joshi 2023년 10월 6일
It might not work because you are working with an App.
Could you share the code you are working with?

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

카테고리

Help CenterFile Exchange에서 Geographic Plots에 대해 자세히 알아보기

태그

제품


릴리스

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by