Change marker color and size to non default color

216 visualizzazioni (ultimi 30 giorni)
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.

Risposta accettata

Constantino Carlos Reyes-Aldasoro
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 Commenti
Steven Lord
Steven Lord il 21 Lug 2018
Add a call to hold on before you plot.
C G
C G il 23 Lug 2018
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;

Accedi per commentare.

Più risposte (1)

vishal rawat
vishal rawat il 7 Lug 2019
How to change size of the marker with different value.
  1 Commento
Cg Gc
Cg Gc il 8 Lug 2019
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.

Accedi per commentare.

Categorie

Scopri di più su Contour Plots in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by