how can I plot an icon on a map axis

3 visualizaciones (últimos 30 días)
Stephen Forczyk
Stephen Forczyk el 19 de Dic. de 2016
Respondida: mizuki el 20 de Dic. de 2016
I would like to create maps showing ocean areas with small ship icons at the ship locations. I can create icons but how do I add them to the map?

Respuesta aceptada

mizuki
mizuki el 20 de Dic. de 2016
If you have an internet connection, use WEBMAP to draw a map and WMMARKER to put the icon on the map. (See the second example in WMMARKER)
If you do not, use GEOSHOW to draw a map and put an image:
figure
geoshow('landareas.shp', 'FaceColor', [0.5 1.0 0.5]);
hold on
img = imread('peppers.png');image([-70 -50],[0 20],img);
The following documentation code might help you to get an idea. (This is bioinformatics example, but the mapping part does not require it to run)
- Displaying Geographic Regions of the H5N1 Virus on a Map of Africa and Asia

Más respuestas (0)

Categorías

Más información sobre Mapping Toolbox en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by