www.gusucode.com > map 案例源码 matlab代码程序 > map/Create3DGlobeDisplayExample.m

    %% Create 3-D Globe Display
% 
%%
% Set up map axes.
axesm ('globe','Grid', 'on');
view(60,60)
axis off
%% 
% Display a surface
load geoid
meshm(geoid, geoidrefvec)
%%
% Display coastline vectors
load coastlines
plotm(coastlat,coastlon)