Change marker color and size to non default color

213 vues (au cours des 30 derniers jours)
C G
C G le 20 Juil 2018
Commenté : Cg Gc le 8 Juil 2019
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.

Réponse acceptée

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 commentaires
Steven Lord
Steven Lord le 21 Juil 2018
Add a call to hold on before you plot.
C G
C G le 23 Juil 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;

Connectez-vous pour commenter.

Plus de réponses (1)

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

Connectez-vous pour commenter.

Catégories

En savoir plus sur Contour Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by