My geoplot axes keep plotting on top of each other. How do I clear them before plotting again?
    조회 수: 4 (최근 30일)
  
       이전 댓글 표시
    
Here is a picture of the GUI I am working on. As you can see after a few iterations the axes keep printing on top of the previous axes. What is the command I should use to replace the old geoplot. I saw in the Matlab documentation there is something called 'replace' with the NextPlot and NewPlot functions. But I don't understand how to use them. Thank you.

댓글 수: 1
  hanif hamden
 2021년 9월 23일
				Is there any solution on this? I also have the same problem with Mr Mario. 
답변 (1개)
  Michael Bagge-Hansen
 2022년 4월 29일
        use the app properties: 
 properties (Access = private)
        map
then when you create the map:
delete(app.map);
app.map = geoaxes(app.MapPanel);
댓글 수: 0
참고 항목
카테고리
				Help Center 및 File Exchange에서 Geographic Plots에 대해 자세히 알아보기
			
	제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


