Этот пример показывает, как настроить размещение Географические Оси.
Постройте график между двумя городами с помощью функции geoplot
.
latSeattle = 47.62;
lonSeattle = -122.33;
latAnchorage = 61.20;
lonAnchorage = -149.9;
geoplot([latSeattle latAnchorage],[lonSeattle lonAnchorage],'b:')
Заставьте график поднять целый пробел в фигуре, выключить сетку и выключить отметки деления.
gx = gca; gx.Grid = 'off' gx.TickDir = 'out' gx.Position = gx.OuterPosition
gx = GeographicAxes with properties: Basemap: 'darkwater' Position: [0.1300 0.1100 0.7750 0.8150] Units: 'normalized' Use GET to show all properties gx = GeographicAxes with properties: Basemap: 'darkwater' Position: [0.1300 0.1100 0.7750 0.8150] Units: 'normalized' Use GET to show all properties gx = GeographicAxes with properties: Basemap: 'darkwater' Position: [0 0 1 1] Units: 'normalized' Use GET to show all properties