Use Geographic Plots in tiledlayout without multiple axis

조회 수: 11 (최근 30일)
F Schmid
F Schmid 2022년 5월 5일
답변: Steve Eddins 2022년 5월 6일
I want to create a tiledlayout with multiple geographic plots. When I create a layout there are two axis showing. This mistake was also in https://de.mathworks.com/matlabcentral/answers/1666249-how-do-i-draw-with-the-geoaxes-geoplot-function-on-the-axes-created-with-the-tiledlayout-function#answer_912699 but no one noticed.
t = tiledlayout('flow');
nexttile
gax1 = geoaxes(t);
gax1. Layout.Tile = 1; % tile location
geoplot(gax1, [47.62 61.20],[-122.33 -149.90],'g-*')

채택된 답변

Steve Eddins
Steve Eddins 2022년 5월 6일
From the doc for nexttile: "nexttile creates an axes object and places it into the next empty tile of the tiled chart layout that is in the current figure." So, I think your call to nexttile created an axes and placed it in the first slot in the flow layout. Then, when you called geoaxes(t), that created a second axes, a geoaxes, and placed it in the second slot in the flow layout.
I recommend that you take out the call to nexttile.
t = tiledlayout('flow');
gax1 = geoaxes(t);
gax1. Layout.Tile = 1; % tile location
geoplot(gax1, [47.62 61.20],[-122.33 -149.90],'g-*')

추가 답변 (0개)

카테고리

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

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by