Change marker color and size to non default color

214 ビュー (過去 30 日間)
C G
C G 2018 年 7 月 20 日
コメント済み: Cg Gc 2019 年 7 月 8 日
I am trying to plot a point on a map. I can make the map, plot my point, and change my style of my marker just fine. But I can't change the size or the color. I would like to make it a bit larger and purple, specifically, [.6 .2 1]. Can anyone help? Please see the attachment for what I have tried so far.
Here is the original code, which works, making my point blue.
load coastlines
figure('Color','w')%Colors the figure white.
axesm('stereo','Origin',[-90 0],'MapLatLimit',[-90 -30])
axis off;
framem on;
gridm on;
mlabel on;
plabel on;
setm(gca,'MLabelParallel',50)
geoshow(coastlat,coastlon,'DisplayType','polygon', 'FaceColor', 'white')
plot3m(-71.166,111.366,2690,'b.')
Thanks a bunch.

採用された回答

Constantino Carlos Reyes-Aldasoro
Constantino Carlos Reyes-Aldasoro 2018 年 7 月 20 日
When you plot, the color code 'b-o' is a shortcut to indicate colour (b), linestyle (-) and marker (o), in your case you are using blue dots:
plot3m(-71.166,111.366,2690,'b.')
so you can change that shortcut to whatever you want
plot3(-71.166,111.366,2690,'color', [.6 .2 1],'linestyle','none','marker','.','markersize',10 )
I tried this with plot3, but probably works the same with plot3m.
  3 件のコメント
Steven Lord
Steven Lord 2018 年 7 月 21 日
Add a call to hold on before you plot.
C G
C G 2018 年 7 月 23 日
Works great. Thank you.
contourps(lat,lon,sfz,0:200:5000,'km')
cb = colorbar;
ylabel(cb,'surface elevation (m)')
%Fills in the contours. Adds a color bar and some labels
contourfps(lat,lon,sfz,0:200:5000, 'km')
hold on;
cb = colorbar;
ylabel(cb,'surface elevation (m)');
hold on;
plot (2361.1,-994.1,'color', [.0 .0 1],'linestyle','none','marker','.','markersize',15) %Law Dome
hold on;

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

その他の回答 (1 件)

vishal rawat
vishal rawat 2019 年 7 月 7 日
How to change size of the marker with different value.
  1 件のコメント
Cg Gc
Cg Gc 2019 年 7 月 8 日
In this line,
plot (2361.1,-994.1,'color', [.0 .0 1],'linestyle','none','marker','.','markersize',15)
the size of the marker is indicated by 'markersize', 15. If you want it to be a bigger marker, than change the 15 to any larger number. If you want it to be smaller, than change it to any number smaller than 15.

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

カテゴリ

Help Center および File ExchangeContour Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by