Position of map axes in figure

4 ビュー (過去 30 日間)
Ellen
Ellen 2011 年 11 月 3 日
コメント済み: Chad Greene 2014 年 8 月 20 日
Where are the map axes? I need to their absolute position in a figure, equivalent to what is returned by get(gca,'Position') for ordinary, Cartesian axes. As shown in the example below, doing this for map axes (red) returns the default position of ordinary axes (black). Can anyone help me?
figure; hold on;
h_axm = axesm('eqdcylin','FLonLimit',[0 20],'FLatLimit',[0 20]); %Create axes
set(h_axm,'XColor',[1 0 0],'YColor',[1 0 0]); %Color map axes red
axespos = get(h_axm,'Position'); %Get position of axes
h_ax = axes('Position',axespos); %Create new axes at same position
set(h_ax,'Color','None'); %Turn off background color to show both axes

採用された回答

Ellen
Ellen 2013 年 1 月 3 日
This function provides the "correct" position: http://www.mathworks.com/matlabcentral/fileexchange/9615.
  1 件のコメント
Chad Greene
Chad Greene 2014 年 8 月 20 日
Brilliant! This solves my problem perfectly. Thanks Ellen for posting this question and answer.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGraphics Object Properties についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by